File tree 4 files changed +17
-7
lines changed
reactive/webflux/kotlin/hello-security
java-configuration/aspectj
spring-boot/kotlin/hello-security
4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 1
1
version =5.6.0-SNAPSHOT
2
2
spring-security.version =5.6.0-SNAPSHOT
3
- org.gradle.jvmargs =-Xmx3g -XX:MaxPermSize =2048m -XX: +HeapDumpOnOutOfMemoryError
3
+ org.gradle.jvmargs =-Xmx3g -XX:+HeapDumpOnOutOfMemoryError
4
4
org.gradle.parallel =true
5
5
org.gradle.caching =true
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
3
plugins {
4
4
id(" org.springframework.boot" ) version " 2.5.0"
5
5
id(" io.spring.dependency-management" ) version " 1.0.9.RELEASE"
6
- kotlin(" jvm" ) version " 1.5.0 "
7
- kotlin(" plugin.spring" ) version " 1.5.0 "
6
+ kotlin(" jvm" ) version " 1.5.31 "
7
+ kotlin(" plugin.spring" ) version " 1.5.31 "
8
8
}
9
9
10
10
repositories {
@@ -34,7 +34,7 @@ dependencies {
34
34
tasks.withType<KotlinCompile > {
35
35
kotlinOptions {
36
36
freeCompilerArgs = listOf (" -Xjsr305=strict" )
37
- jvmTarget = " 1.8 "
37
+ jvmTarget = " 11 "
38
38
}
39
39
}
40
40
Original file line number Diff line number Diff line change @@ -8,6 +8,16 @@ repositories {
8
8
maven { url " https://repo.spring.io/snapshot" }
9
9
}
10
10
11
+ compileJava {
12
+ sourceCompatibility " 1.8"
13
+ targetCompatibility " 1.8"
14
+ }
15
+
16
+ compileTestJava {
17
+ sourceCompatibility " 1.8"
18
+ targetCompatibility " 1.8"
19
+ }
20
+
11
21
dependencies {
12
22
aspect platform(" org.springframework:spring-framework-bom:5.3.0" )
13
23
aspect platform(" org.springframework.security:spring-security-bom:5.4.0-SNAPSHOT" )
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
3
plugins {
4
4
id(" org.springframework.boot" ) version " 2.5.0"
5
5
id(" io.spring.dependency-management" ) version " 1.0.9.RELEASE"
6
- kotlin(" jvm" ) version " 1.5.0 "
7
- kotlin(" plugin.spring" ) version " 1.5.0 "
6
+ kotlin(" jvm" ) version " 1.5.31 "
7
+ kotlin(" plugin.spring" ) version " 1.5.31 "
8
8
}
9
9
10
10
repositories {
@@ -28,7 +28,7 @@ dependencies {
28
28
tasks.withType<KotlinCompile > {
29
29
kotlinOptions {
30
30
freeCompilerArgs = listOf (" -Xjsr305=strict" )
31
- jvmTarget = " 1.8 "
31
+ jvmTarget = " 11 "
32
32
}
33
33
}
34
34
You can’t perform that action at this time.
0 commit comments