Skip to content

Commit

Permalink
Upgrade SonarPlugin for Gradle 8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Feb 21, 2024
1 parent f89f863 commit c66c8ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 0 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,3 @@ if (!version.toString().endsWith("-SNAPSHOT")) {

val sonarqube by tasks
sonarqube.enabled = false //FIXME requires Java 17

tasks.withType<Sign> {
enabled = false //FIXME Signing Gradle Module Metadata is not supported for snapshot dependencies
}
4 changes: 4 additions & 0 deletions sonar/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ tasks.withType<Test> {
environment("SONAR_SCANNER_HOME", "")
environment("SONARQUBE_SCANNER_PARAMS", "{}")
}

tasks.withType<Sign> {
enabled = false //FIXME Signing Gradle Module Metadata is not supported for snapshot dependencies
}
4 changes: 4 additions & 0 deletions sonatype/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ tasks.withType<Test> {
showStandardStreams = true
}
}

tasks.withType<Sign> {
enabled = false //FIXME Signing Gradle Module Metadata is not supported for snapshot dependencies
}

0 comments on commit c66c8ee

Please sign in to comment.