Skip to content

Commit

Permalink
fixup! Revert "Set up code coverage statistics"
Browse files Browse the repository at this point in the history
  • Loading branch information
Philzen committed Jun 9, 2024
1 parent 031aed4 commit cad100a
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ plugins {
id("org.openrewrite.rewrite") version "latest.release"

// for code coverage collection
id "jacoco"
id "org.sonarqube" version "3.5.0.2730”
id ("jacoco")
id ("org.sonarqube") version "5.0.0.4638"
}

// Set as appropriate for your organization
Expand Down Expand Up @@ -67,14 +67,31 @@ dependencies {
testRuntimeOnly("org.openrewrite.recipe:rewrite-testing-frameworks:latest.release") {
exclude("org.testcontainers", "testcontainers")
}
}

jacocoTestReport {
reports {
xml.required = true
}
// // actually depend on the plugin to make it available
// implementation(plugin("jacoco"))
}



//jacoco {
// reportsDirectory = layout.buildDirectory.dir('customJacocoReportDir')
//}
//

//jacocoTestReport {
// reports {
// xml.required = true
// }
//}

//jacocoTestReport {
// dependsOn test // tests are required to run before generating the report
// reports {
// xml.required = true
// }
//}

signing {
// To enable signing have your CI workflow set the "signingKey" and "signingPassword" Gradle project properties
isRequired = false
Expand Down

0 comments on commit cad100a

Please sign in to comment.