File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
5
5
import java.net.URI
6
6
7
7
plugins {
8
- id(" io.spring.dependency-management" ) version " 1.1.0 " apply false
9
- kotlin(" jvm" ) version " 1.9.0 " apply false
10
- kotlin(" plugin.spring" ) version " 1.9.0 " apply false
8
+ id(" io.spring.dependency-management" ) version " 1.1.4 " apply false
9
+ kotlin(" jvm" ) version " 1.9.22 " apply false
10
+ kotlin(" plugin.spring" ) version " 1.9.22 " apply false
11
11
}
12
12
13
13
group = " com.gxf.utilities"
@@ -17,10 +17,6 @@ version = System.getenv("GITHUB_REF_NAME")
17
17
?.let { if (SemVer .valid(it)) it.removePrefix(" v" ) else " ${it} -SNAPSHOT" }
18
18
? : " develop"
19
19
20
-
21
-
22
-
23
-
24
20
subprojects {
25
21
apply (plugin = " org.jetbrains.kotlin.jvm" )
26
22
apply (plugin = " org.jetbrains.kotlin.plugin.spring" )
@@ -39,19 +35,19 @@ subprojects {
39
35
withSourcesJar()
40
36
41
37
toolchain {
42
- languageVersion.set(JavaLanguageVersion .of(17 ))
38
+ languageVersion.set(JavaLanguageVersion .of(21 ))
43
39
}
44
40
}
45
41
46
42
extensions.configure<StandardDependencyManagementExtension > {
47
43
imports {
48
- mavenBom(" org.springframework.boot:spring-boot-dependencies:3.1.3 " )
44
+ mavenBom(" org.springframework.boot:spring-boot-dependencies:3.2.2 " )
49
45
}
50
46
}
51
47
52
48
tasks.withType<KotlinCompile > {
53
49
compilerOptions {
54
- jvmTarget = JvmTarget .JVM_17
50
+ jvmTarget = JvmTarget .JVM_21
55
51
freeCompilerArgs = listOf (" -Xjsr305=strict" )
56
52
}
57
53
}
You can’t perform that action at this time.
0 commit comments