Skip to content

Commit 268f5c4

Browse files
committed
Merge remote-tracking branch 'origin/master' into feature/issue-335
2 parents d29a948 + ef5a6ea commit 268f5c4

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ allprojects {
1515
repositories {
1616
mavenLocal()
1717
mavenCentral()
18-
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
19-
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
20-
maven { url "https://jitpack.io" }
18+
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
19+
maven { url = "https://oss.sonatype.org/content/repositories/releases/" }
20+
maven { url = "https://jitpack.io" }
2121
}
2222
}
2323

@@ -123,5 +123,5 @@ compileJava {
123123
}
124124

125125
wrapper {
126-
gradleVersion = '8.10.2'
126+
gradleVersion = '8.12.1'
127127
}

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

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

0 commit comments

Comments
 (0)