Skip to content

Commit

Permalink
set shadow after evaluate
Browse files Browse the repository at this point in the history
  • Loading branch information
mfnalex committed Feb 15, 2024
1 parent 7dbd725 commit 5cd1f6f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ allprojects {
repositories {
mavenCentral()
}
tasks.withType<ShadowJar>().configureEach {
archiveVersion = ""
archiveClassifier = "shaded"
afterEvaluate {
tasks.withType<ShadowJar>().configureEach {
archiveVersion = ""
archiveClassifier = "shaded"
}
}
}

subprojects {
//apply(plugin = "org.jlleitschuh.gradle.ktlint")
version = rootProject.version
}

Expand Down

0 comments on commit 5cd1f6f

Please sign in to comment.