Skip to content

Commit

Permalink
comment out classifier to fix gradle build
Browse files Browse the repository at this point in the history
  • Loading branch information
Rwolfe-Nava committed Jan 30, 2024
1 parent a3d2351 commit b7cdfea
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -153,20 +153,20 @@ subprojects {

jar {
processResources.exclude('checkstyle.xml')
classifier "main".equalsIgnoreCase(gitBranch()) || "main".equalsIgnoreCase(System.getenv('BRANCH_NAME')) ? "" : "SNAPSHOT"
out.println("**** building branch - " + gitBranch() + ", classifier - " + classifier + " - CI branch - " + System.getenv('BRANCH_NAME'))
// classifier "main".equalsIgnoreCase(gitBranch()) || "main".equalsIgnoreCase(System.getenv('BRANCH_NAME')) ? "" : "SNAPSHOT"
// out.println("**** building branch - " + gitBranch() + ", classifier - " + classifier + " - CI branch - " + System.getenv('BRANCH_NAME'))
}

test {
useJUnitPlatform()
finalizedBy jacocoTestReport // report is always generated after tests run
}

jacocoTestReport {
reports {
xml.enabled true
}
}
// jacocoTestReport {
// reports {
// xml.enabled true
// }
// }

jacoco {
toolVersion = "0.8.7"
Expand Down

0 comments on commit b7cdfea

Please sign in to comment.