Skip to content

Commit 644bddf

Browse files
github
- Specify vendor
1 parent 5bf3e23 commit 644bddf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,11 @@ subprojects {
7878
java {
7979
withJavadocJar()
8080
withSourcesJar()
81-
toolchain { languageVersion = JavaLanguageVersion.of(25) }
81+
toolchain {
82+
languageVersion = JavaLanguageVersion.of(25)
83+
// Specify vendor to get around a Github Java 25 issue
84+
vendor.set(JvmVendorSpec.AZUL)
85+
}
8286
}
8387

8488
// Prevents tons of errors if someone is using ASCII

0 commit comments

Comments
 (0)