Skip to content

Commit 7985267

Browse files
committedOct 5, 2024··
Bump Gradle version to 8.10.2
1 parent a4296bb commit 7985267

9 files changed

+24
-19
lines changed
 

‎build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
@file:Suppress("UnstableApiUsage")
1+
@file:Suppress("UnstableApiUsage", "unused")
22

33
plugins {
4-
alias(libs.plugins.conventions.develocity.api)
5-
alias(libs.plugins.conventions.release)
6-
alias(libs.plugins.gradle.java.library)
7-
alias(libs.plugins.gradle.java.test.fixtures)
4+
alias(libs.plugins.develocityApiConventions)
5+
alias(libs.plugins.javaLibrary)
6+
alias(libs.plugins.javaTestFixtures)
7+
alias(libs.plugins.releaseConventions)
88
}
99

1010
group = "dev.erichaag"

‎buildSrc/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
implementation(plugin(libs.plugins.openapi.generator))
10+
implementation(plugin(libs.plugins.openapiGenerator))
1111
}
1212

1313
fun plugin(plugin: Provider<PluginDependency>) =

‎buildSrc/src/main/kotlin/conventions.develocity-api.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ dependencies {
3636
develocityApiSpecification(develocityApiExtension.version.map { "com.gradle:develocity-api-specification:$it" })
3737
implementation(libs.findLibrary("jackson-annotations").get())
3838
implementation(libs.findLibrary("jackson-databind").get())
39-
implementation(libs.findLibrary("jakarta-annotation-api").get())
39+
implementation(libs.findLibrary("jakarta-annotations").get())
4040
}
4141

4242
pluginManager.withPlugin("java-library") {
4343
dependencies {
4444
"api"(libs.findLibrary("jackson-annotations").get())
45-
"api"(libs.findLibrary("jakarta-annotation-api").get())
45+
"api"(libs.findLibrary("jakarta-annotations").get())
4646
}
4747
}
4848

‎gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
org.gradle.caching=true
22
org.gradle.configuration-cache=true
3-
org.gradle.jvmargs=-Duser.language=en -Duser.country=US -Dfile.encoding=UTF-8
3+
org.gradle.jvmargs=-Duser.language=en -Duser.country=US -Dfile.encoding=UTF-8 -Xmx512m -XX:MaxMetaspaceSize=256m
44
org.gradle.kotlin.dsl.allWarningsAsErrors=true
55
org.gradle.parallel=true

‎gradle/libs.versions.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[versions]
22
jackson-core = "2.17.1"
3-
jakarta-annotation = "3.0.0"
3+
jakarta-annotations = "3.0.0"
44
junit = "5.10.3"
55
openapi-generator = "7.6.0"
66

77
[libraries]
88
jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations", version.ref = "jackson-core" }
99
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson-core" }
10-
jakarta-annotation-api = { module = "jakarta.annotation:jakarta.annotation-api", version.ref = "jakarta-annotation" }
10+
jakarta-annotations = { module = "jakarta.annotation:jakarta.annotation-api", version.ref = "jakarta-annotations" }
1111
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit" }
1212

1313
[plugins]
14-
conventions-develocity-api = { id = "conventions.develocity-api" }
15-
conventions-release = { id = "conventions.release" }
16-
gradle-java-library = { id = "java-library" }
17-
gradle-java-test-fixtures = { id = "java-test-fixtures" }
18-
openapi-generator = { id = "org.openapi.generator", version.ref = "openapi-generator" }
14+
develocityApiConventions = { id = "conventions.develocity-api" }
15+
javaLibrary = { id = "java-library" }
16+
javaTestFixtures = { id = "java-test-fixtures" }
17+
openapiGenerator = { id = "org.openapi.generator", version.ref = "openapi-generator" }
18+
releaseConventions = { id = "conventions.release" }

‎gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

‎gradle/wrapper/gradle-wrapper.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=a4b4158601f8636cdeeab09bd76afb640030bb5b144aafe261a5e8af027dc612
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

‎gradlew

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

‎gradlew.bat

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

0 commit comments

Comments
 (0)
Please sign in to comment.