Skip to content

Commit a8d2ca2

Browse files
committed
Upgrade tools and dependencies
1 parent 5ef7d7f commit a8d2ca2

7 files changed

+24
-12
lines changed

build.gradle.kts

+3-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@ tasks.compileJava {
6565
tasks.compileTestJava {
6666
options.release.set(oldestSupportedJavaVersion)
6767
options.compilerArgs = listOf("-parameters")
68-
// Disable NullAway for tests because it gives too many false positives for
69-
// tests that check nullness at runtime.
68+
69+
// Disable NullAway for tests because it generates too many false positives
70+
// for tests that check nullness at runtime.
7071
options.errorprone.disable("NullAway")
7172
}
7273

gradle/gradle-daemon-jvm.properties

+11
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
#This file is generated by updateDaemonJvm
2+
toolchainUrl.FREE_BSD.AARCH64=https\://api.foojay.io/disco/v3.0/ids/e2d97f28068cf05b0467aa8e97b19f69/redirect
3+
toolchainUrl.FREE_BSD.X86_64=https\://api.foojay.io/disco/v3.0/ids/a41f952f4496c2309be30fd168c6c117/redirect
4+
toolchainUrl.LINUX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/e2d97f28068cf05b0467aa8e97b19f69/redirect
5+
toolchainUrl.LINUX.X86_64=https\://api.foojay.io/disco/v3.0/ids/a41f952f4496c2309be30fd168c6c117/redirect
6+
toolchainUrl.MAC_OS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/e7806cd9471741d622398825f14d2da6/redirect
7+
toolchainUrl.MAC_OS.X86_64=https\://api.foojay.io/disco/v3.0/ids/0402cc5012ae8124ea0ad01bd29342ef/redirect
8+
toolchainUrl.UNIX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/e2d97f28068cf05b0467aa8e97b19f69/redirect
9+
toolchainUrl.UNIX.X86_64=https\://api.foojay.io/disco/v3.0/ids/a41f952f4496c2309be30fd168c6c117/redirect
10+
toolchainUrl.WINDOWS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/86ea5d26c5757681ffe78d87258b45ec/redirect
11+
toolchainUrl.WINDOWS.X86_64=https\://api.foojay.io/disco/v3.0/ids/ea8232621e1368089cec8b12816df5e3/redirect
12+
toolchainVendor=ADOPTIUM
213
toolchainVersion=21

gradle/libs.versions.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[versions]
2-
assertj = "3.26.3"
3-
benManesVersionsPlugin = "0.51.0"
4-
diffplugSpotlessPlugin = "6.25.0"
2+
assertj = "3.27.3"
3+
benManesVersionsPlugin = "0.52.0"
4+
diffplugSpotlessPlugin = "7.0.2"
55
errorprone = "2.36.0"
66
googleJavaFormat = "1.25.0"
77
gradlexReproducibleBuildsPlugin = "1.0"
8-
guava = "33.3.1-jre"
8+
guava = "33.4.0-jre"
99
jgrapht = "1.5.2"
10-
jqwik = "1.9.1"
10+
jqwik = "1.9.2"
1111
jspecify = "1.0.0"
12-
junit = "5.11.3"
12+
junit = "5.12.1"
1313
ktfmt = "0.54"
1414
netLtgtErrorpronePlugin = "4.1.0"
15-
nullaway = "0.12.1"
15+
nullaway = "0.12.4"
1616
openrewritePlugin = "7.0.4"
1717
openrewriteRecipe = "2.23.1"
1818

gradle/wrapper/gradle-wrapper.jar

122 Bytes
Binary file not shown.

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.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
plugins { id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0") }
1+
plugins { id("org.gradle.toolchains.foojay-resolver-convention") version ("0.9.0") }
22

33
rootProject.name = "guava-graph-utils"
44

0 commit comments

Comments
 (0)