Skip to content

Commit

Permalink
Update to Gradle 8.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Jan 27, 2025
1 parent 0656d63 commit f4b2aaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ allprojects {
project.apply plugin: "io.freefair.maven-central.validate-poms"

signing {
required { !version.endsWith('SNAPSHOT') && gradle.taskGraph.hasTask("publish") }
required = { !version.endsWith('SNAPSHOT') && gradle.taskGraph.hasTask("publish") }

def signingKey = findProperty("signingKey")
def signingPassword = findProperty("signingPassword")
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
gradlePluginPortal()
maven { url 'https://repo.spring.io/milestone' }
maven { url = 'https://repo.spring.io/milestone' }
}
}

Expand Down Expand Up @@ -34,7 +34,7 @@ buildCache {
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url = 'https://repo.spring.io/milestone' }
}
}

Expand Down

0 comments on commit f4b2aaf

Please sign in to comment.