File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,9 @@ tasks.named("dispatchGitHubWorkflow") {
88
88
89
89
subprojects {
90
90
plugins. withType(JavaPlugin ) {
91
- project. sourceCompatibility= JavaVersion . VERSION_17
91
+ java {
92
+ sourceCompatibility= JavaVersion . VERSION_17
93
+ }
92
94
}
93
95
tasks. withType(JavaCompile ) {
94
96
options. encoding = " UTF-8"
Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ plugins {
4
4
id " groovy"
5
5
}
6
6
7
- sourceCompatibility = JavaVersion . VERSION_17
7
+ java {
8
+ sourceCompatibility = JavaVersion . VERSION_17
9
+ }
8
10
9
11
repositories {
10
12
gradlePluginPortal()
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ dependencies {
37
37
}
38
38
39
39
task springVersion (type : org.gradle.api.tasks.WriteProperties ) {
40
- outputFile = file(" ${ buildDir} /versions/spring-security.versions" )
40
+ destinationFile = file(" ${ buildDir} /versions/spring-security.versions" )
41
41
property(" org.springframework:spring-core" , springVersion())
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments