build: use composite builds instead of buildSrc

This commit is contained in:
Linnea Gräf
2025-07-06 12:03:13 +02:00
parent 08c81862af
commit 6c3f833362
22 changed files with 429 additions and 64 deletions

View File

@@ -0,0 +1,22 @@
// SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
//
// SPDX-License-Identifier: CC0-1.0
plugins {
`kotlin-dsl`
kotlin("jvm") version "2.0.21"
}
repositories {
mavenCentral()
gradlePluginPortal()
maven {
name = "jitpack"
url = uri("https://jitpack.io")
}
}
dependencies {
implementation("com.github.romangraef:neaslicenseextractificator:1.1.0")
api("com.gradleup.shadow:shadow-gradle-plugin:9.0.0-rc1")
implementation("net.fabricmc:access-widener:2.1.0")
implementation("com.google.code.gson:gson:2.10.1")
}