We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f523673 commit 98b70f6Copy full SHA for 98b70f6
buildSrc/src/main/java/org/springframework/graphql/build/conventions/KotlinConventions.java
@@ -34,8 +34,8 @@ public void apply(Project project) {
34
35
private void configure(KotlinCompile compile) {
36
compile.compilerOptions(options -> {
37
- options.getApiVersion().set(KotlinVersion.KOTLIN_2_1);
38
- options.getLanguageVersion().set(KotlinVersion.KOTLIN_2_1);
+ options.getApiVersion().set(KotlinVersion.KOTLIN_2_2);
+ options.getLanguageVersion().set(KotlinVersion.KOTLIN_2_2);
39
options.getJvmTarget().set(JvmTarget.JVM_17);
40
options.getJavaParameters().set(true);
41
options.getAllWarningsAsErrors().set(true);
0 commit comments