Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Oct 22, 2024
1 parent 298db46 commit 4684bd4
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,17 +203,17 @@ val compileModule by tasks.registering(JavaCompile::class) {
}

tasks.withType<Jar>().configureEach {
from(rootDir) {
include("LICENSE.md")
into("META-INF")
}
from(rootDir) {
include("NOTICE.md")
rename {
"LICENSE-notice.md"
}
into("META-INF")
}
from(rootDir) {
include("LICENSE.md")
into("META-INF")
}
from(rootDir) {
include("NOTICE.md")
rename {
"LICENSE-notice.md"
}
into("META-INF")
}
val suffix = archiveClassifier.getOrElse("")
if (suffix.isBlank() || this is ShadowJar) {
dependsOn(allMainClasses, compileModule)
Expand Down

0 comments on commit 4684bd4

Please sign in to comment.