User: kyle wood Date: 28 Mar 25 00:46 Revision: 40b186d7b0dd665e90994a8bdf5e9423a7686be2 Summary: Update to Gradle 8.13 TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=9907&personal=false The following binary files were skipped: gradle/wrapper/gradle-wrapper.jar Index: buildSrc/build.gradle.kts =================================================================== --- buildSrc/build.gradle.kts (revision f77d83555d7dabed746815fd0b7591cc3d6c3873) +++ buildSrc/build.gradle.kts (revision 40b186d7b0dd665e90994a8bdf5e9423a7686be2) @@ -18,6 +18,7 @@ * along with this program. If not, see . */ +import org.jetbrains.kotlin.gradle.dsl.JvmTarget import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { @@ -25,10 +26,10 @@ } tasks.withType().configureEach { - options.release.set(8) + options.release.set(17) } tasks.withType().configureEach { - kotlinOptions.jvmTarget = "1.8" + compilerOptions.jvmTarget = JvmTarget.JVM_17 } repositories { Index: gradle/wrapper/gradle-wrapper.properties =================================================================== --- gradle/wrapper/gradle-wrapper.properties (revision f77d83555d7dabed746815fd0b7591cc3d6c3873) +++ gradle/wrapper/gradle-wrapper.properties (revision 40b186d7b0dd665e90994a8bdf5e9423a7686be2) @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME Index: gradlew =================================================================== --- gradlew (revision f77d83555d7dabed746815fd0b7591cc3d6c3873) +++ gradlew (revision 40b186d7b0dd665e90994a8bdf5e9423a7686be2) @@ -86,8 +86,7 @@ # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) -APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s -' "$PWD" ) || exit +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -206,7 +205,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' # Collect all arguments for the java command: -# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, # and any embedded shellness will be escaped. # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be # treated as '${Hostname}' itself on the command line.