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") { shadowJar {
// target = shadowJar.get() archiveFileName.set(rootProject.name + ".jar")
// prefix = "${project.name}.lib" }
// }
//
// shadowJar {
// dependsOn(getByName("relocateJars") as ConfigureShadowRelocation)
// archiveFileName.set("${project.name}-${project.version}.jar")
// minimize()
// configurations = listOf(project.configurations.shadow.get())
// }
//
build { build {
dependsOn(shadowJar) dependsOn(shadowJar)
} }
jar {
enabled = false
}
} }
dependencies { dependencies {