Skip to content

Commit

Permalink
Update gradle to 8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
lbergelson committed Jan 8, 2025
1 parent 7e7f343 commit 45496ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

wrapper {
gradleVersion = '8.5'
gradleVersion = '8.12'
}

java {
Expand All @@ -24,7 +24,7 @@ version = (isRelease ? gitVersion() : gitVersion() + "-SNAPSHOT").replaceAll(".d
repositories {
mavenCentral()
maven {
url "https://broadinstitute.jfrog.io/broadinstitute/libs-snapshot/" //for Broad snapshots
url = "https://broadinstitute.jfrog.io/broadinstitute/libs-snapshot/" //for Broad snapshots
}

mavenLocal()
Expand Down Expand Up @@ -123,7 +123,7 @@ artifacts {
* Sign non-snapshot releases with our secret key. This should never need to be invoked directly.
*/
signing {
required { isRelease && gradle.taskGraph.hasTask("publish") }
required = (isRelease && gradle.taskGraph.hasTask("publish"))
sign publishing.publications
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 45496ef

Please sign in to comment.