build: merge shadow jar access wideners

This commit is contained in:
Linnea Gräf
2025-07-05 19:58:17 +02:00
parent 0b9d5bd665
commit ef53649368
5 changed files with 125 additions and 29 deletions

View File

@@ -3,25 +3,27 @@
// SPDX-License-Identifier: CC0-1.0
plugins {
kotlin("jvm") version "2.1.0"
`kotlin-dsl`
kotlin("jvm") version "2.1.0"
`kotlin-dsl`
}
repositories {
mavenCentral()
maven {
name = "jitpack"
url = uri("https://jitpack.io")
}
mavenCentral()
maven {
name = "jitpack"
url = uri("https://jitpack.io")
}
}
dependencies {
implementation("com.github.romangraef:neaslicenseextractificator:1.1.0")
implementation("com.google.code.gson:gson:2.10.1")
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")
}
sourceSets {
main {
kotlin {
srcDir(file("src"))
}
}
main {
kotlin {
srcDir(file("src"))
}
}
}