Skip to content

Commit

Permalink
build: avoid eager task creation
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMrMilchmann committed Mar 1, 2023
1 parent 87d1909 commit 380656f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ tasks {
}
}

val emptyJar = tasks.create<Jar>("emptyJar") {
val emptyJar = tasks.register<Jar>("emptyJar") {
destinationDirectory.set(buildDir.resolve("emptyJar"))
archiveBaseName.set("io.github.themrmilchmann.ecj.gradle.plugin")
}
Expand Down

0 comments on commit 380656f

Please sign in to comment.