File tree Expand file tree Collapse file tree 4 files changed +13
-10
lines changed Expand file tree Collapse file tree 4 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 1
1
## Version Compatibility - [ Gradle - Java - Kotlin] ( https://docs.gradle.org/current/userguide/compatibility.html )
2
2
3
- - ` Gradle 8.0.2 `
4
- - ` Kotlin 1.9.0-Beta `
5
- - ` JVM 20 `
3
+ - ` Gradle 8.2.1 `
4
+ - ` Kotlin 1.9.20-Beta2 `
5
+ - ` JVM 21 `
6
6
- ` Spring Boot 3.1.0 `
7
7
- ` Apache Tomcat 10.1.8 ` or ` Netty 4.1.92.Final `
8
8
16
16
-XX:NativeMemoryTracking=detail
17
17
-XX:Tier3CompileThreshold=100
18
18
-XX:Tier4CompileThreshold=100
19
- --enable-preview
20
19
```
21
20
22
21
## 비교
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
2
import org.springframework.boot.gradle.tasks.bundling.BootJar
3
3
4
4
object DependencyVersions {
5
- const val KOTLIN_VERSION = " 1.9.0-Beta "
5
+ const val KOTLIN_VERSION = " 1.9.20-Beta2 "
6
6
}
7
7
8
8
plugins {
9
9
id(" org.springframework.boot" ) version " 3.1.0"
10
10
id(" io.spring.dependency-management" ) version " 1.1.0"
11
- kotlin(" jvm" ) version " 1.9.0-Beta "
12
- kotlin(" plugin.spring" ) version " 1.9.0-Beta "
11
+ kotlin(" jvm" ) version " 1.9.20-Beta2 "
12
+ kotlin(" plugin.spring" ) version " 1.9.20-Beta2 "
13
13
}
14
14
15
15
allprojects {
@@ -38,13 +38,13 @@ allprojects {
38
38
}
39
39
40
40
kotlin {
41
- jvmToolchain(20 )
41
+ jvmToolchain(21 )
42
42
43
43
}
44
44
45
45
tasks.withType<KotlinCompile >().all {
46
46
kotlinOptions {
47
- jvmTarget = " 20 "
47
+ jvmTarget = " 21 "
48
48
}
49
49
}
50
50
}
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.0.2 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.2.1 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change
1
+ java {
2
+ sourceCompatibility = JavaVersion .VERSION_21
3
+ targetCompatibility = JavaVersion .VERSION_21
4
+ }
1
5
dependencies {
2
6
implementation(project(" :domain" ))
3
7
implementation(project(" :core" ))
You can’t perform that action at this time.
0 commit comments