diff --git a/components/abstractions/build.gradle b/components/abstractions/build.gradle index 1a28bffbc..ab992ed72 100644 --- a/components/abstractions/build.gradle +++ b/components/abstractions/build.gradle @@ -26,7 +26,7 @@ jacocoTestReport { } jacoco { - toolVersion = "0.8.11" + toolVersion = "0.8.12" } spotbugsMain { @@ -92,9 +92,9 @@ publishing { publications { maven(MavenPublication) { customizePom(pom) - groupId project.property('mavenGroupId') - artifactId project.property('mavenArtifactId') - version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" + groupId = project.property('mavenGroupId') + artifactId = project.property('mavenArtifactId') + version = "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" from components.java pom.withXml { def pomFile = file("${project.buildDir}/generated-pom.xml") diff --git a/components/authentication/azure/build.gradle b/components/authentication/azure/build.gradle index 6e467d626..4d3acb9d2 100644 --- a/components/authentication/azure/build.gradle +++ b/components/authentication/azure/build.gradle @@ -26,7 +26,7 @@ jacocoTestReport { } jacoco { - toolVersion = "0.8.11" + toolVersion = "0.8.12" } spotbugsMain { @@ -92,9 +92,9 @@ publishing { publications { maven(MavenPublication) { customizePom(pom) - groupId project.property('mavenGroupId') - artifactId project.property('mavenArtifactId') - version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" + groupId = project.property('mavenGroupId') + artifactId = project.property('mavenArtifactId') + version = "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" from components.java pom.withXml { def pomFile = file("${project.buildDir}/generated-pom.xml") diff --git a/components/bundle/build.gradle b/components/bundle/build.gradle index 920da7a33..4eb56a92c 100644 --- a/components/bundle/build.gradle +++ b/components/bundle/build.gradle @@ -26,7 +26,7 @@ jacocoTestReport { } jacoco { - toolVersion = "0.8.11" + toolVersion = "0.8.12" } spotbugsMain { @@ -92,9 +92,9 @@ publishing { publications { maven(MavenPublication) { customizePom(pom) - groupId project.property('mavenGroupId') - artifactId project.property('mavenArtifactId') - version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" + groupId = project.property('mavenGroupId') + artifactId = project.property('mavenArtifactId') + version = "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" from components.java pom.withXml { def pomFile = file("${project.buildDir}/generated-pom.xml") diff --git a/components/http/okHttp/build.gradle b/components/http/okHttp/build.gradle index f290cd077..6f70e8c9d 100644 --- a/components/http/okHttp/build.gradle +++ b/components/http/okHttp/build.gradle @@ -26,7 +26,7 @@ jacocoTestReport { } jacoco { - toolVersion = "0.8.11" + toolVersion = "0.8.12" } spotbugsMain { @@ -92,9 +92,9 @@ publishing { publications { maven(MavenPublication) { customizePom(pom) - groupId project.property('mavenGroupId') - artifactId project.property('mavenArtifactId') - version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" + groupId = project.property('mavenGroupId') + artifactId = project.property('mavenArtifactId') + version = "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" from components.java pom.withXml { def pomFile = file("${project.buildDir}/generated-pom.xml") diff --git a/components/serialization/form/build.gradle b/components/serialization/form/build.gradle index 7f72da8da..40cf639f5 100644 --- a/components/serialization/form/build.gradle +++ b/components/serialization/form/build.gradle @@ -26,7 +26,7 @@ jacocoTestReport { } jacoco { - toolVersion = "0.8.11" + toolVersion = "0.8.12" } spotbugsMain { @@ -92,9 +92,9 @@ publishing { publications { maven(MavenPublication) { customizePom(pom) - groupId project.property('mavenGroupId') - artifactId project.property('mavenArtifactId') - version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" + groupId = project.property('mavenGroupId') + artifactId = project.property('mavenArtifactId') + version = "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" from components.java pom.withXml { def pomFile = file("${project.buildDir}/generated-pom.xml") diff --git a/components/serialization/json/build.gradle b/components/serialization/json/build.gradle index 19fa1b32c..d74d8a7d4 100644 --- a/components/serialization/json/build.gradle +++ b/components/serialization/json/build.gradle @@ -26,7 +26,7 @@ jacocoTestReport { } jacoco { - toolVersion = "0.8.11" + toolVersion = "0.8.12" } spotbugsMain { @@ -92,9 +92,9 @@ publishing { publications { maven(MavenPublication) { customizePom(pom) - groupId project.property('mavenGroupId') - artifactId project.property('mavenArtifactId') - version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" + groupId = project.property('mavenGroupId') + artifactId = project.property('mavenArtifactId') + version = "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" from components.java pom.withXml { def pomFile = file("${project.buildDir}/generated-pom.xml") diff --git a/components/serialization/multipart/build.gradle b/components/serialization/multipart/build.gradle index 2255c94e3..efea2b4fe 100644 --- a/components/serialization/multipart/build.gradle +++ b/components/serialization/multipart/build.gradle @@ -26,7 +26,7 @@ jacocoTestReport { } jacoco { - toolVersion = "0.8.11" + toolVersion = "0.8.12" } spotbugsMain { @@ -92,9 +92,9 @@ publishing { publications { maven(MavenPublication) { customizePom(pom) - groupId project.property('mavenGroupId') - artifactId project.property('mavenArtifactId') - version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" + groupId = project.property('mavenGroupId') + artifactId = project.property('mavenArtifactId') + version = "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" from components.java pom.withXml { def pomFile = file("${project.buildDir}/generated-pom.xml") diff --git a/components/serialization/text/build.gradle b/components/serialization/text/build.gradle index ff2a93d8f..980d92fa5 100644 --- a/components/serialization/text/build.gradle +++ b/components/serialization/text/build.gradle @@ -26,7 +26,7 @@ jacocoTestReport { } jacoco { - toolVersion = "0.8.11" + toolVersion = "0.8.12" } spotbugsMain { @@ -92,9 +92,9 @@ publishing { publications { maven(MavenPublication) { customizePom(pom) - groupId project.property('mavenGroupId') - artifactId project.property('mavenArtifactId') - version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" + groupId = project.property('mavenGroupId') + artifactId = project.property('mavenArtifactId') + version = "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}" from components.java pom.withXml { def pomFile = file("${project.buildDir}/generated-pom.xml") diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index cea7a793a..e18bc253b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME