We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd8ed2d commit 452d0b6Copy full SHA for 452d0b6
1 file changed
build.gradle
@@ -11,10 +11,18 @@ repositories {
11
}
12
13
java {
14
+ toolchain {
15
+ languageVersion = JavaLanguageVersion.of(21)
16
+ }
17
withJavadocJar()
18
withSourcesJar()
19
20
21
+tasks.withType(JavaCompile) {
22
+ sourceCompatibility = '17'
23
+ targetCompatibility = '17'
24
+}
25
+
26
dependencies {
27
implementation 'com.google.code.gson:gson:2.11.0'
28
0 commit comments