Update build.gradle.kts

This commit is contained in:
Len 2022-09-09 15:21:09 +02:00
parent e56a5c6f8d
commit 3bb4fa8b0f

View File

@ -38,22 +38,18 @@ tasks {
}
}
// create<ConfigureShadowRelocation>("relocateJars") {
// target = shadowJar.get()
// prefix = "${project.name}.lib"
// }
//
// shadowJar {
// dependsOn(getByName("relocateJars") as ConfigureShadowRelocation)
// archiveFileName.set("${project.name}-${project.version}.jar")
// minimize()
// configurations = listOf(project.configurations.shadow.get())
// }
//
shadowJar {
archiveFileName.set(rootProject.name + ".jar")
}
build {
dependsOn(shadowJar)
}
jar {
enabled = false
}
}
dependencies {