Skip to content

Commit

Permalink
maven snapshot fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlamz committed Mar 19, 2024
1 parent 0366157 commit 55d79ba
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions wrapper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,16 @@ java {
}
}

tasks.named("sourcesJar") {
dependsOn("preprocessVersion")
}

tasks.named("jacocoTestCoverageVerification") {
dependsOn("preprocessVersion")
dependsOn("compileJava")
dependsOn("processResources")
}

checkstyle {
// Checkstyle versions 7.x, 8.x, and 9.x are supported by JRE version 8 and above.
toolVersion = "9.3"
Expand Down

0 comments on commit 55d79ba

Please sign in to comment.