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") {
8888
8989subprojects {
9090 plugins. withType(JavaPlugin ) {
91- project. sourceCompatibility= JavaVersion . VERSION_17
91+ java {
92+ sourceCompatibility= JavaVersion . VERSION_17
93+ }
9294 }
9395 tasks. withType(JavaCompile ) {
9496 options. encoding = " UTF-8"
Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ plugins {
44 id " groovy"
55}
66
7- sourceCompatibility = JavaVersion . VERSION_17
7+ java {
8+ sourceCompatibility = JavaVersion . VERSION_17
9+ }
810
911repositories {
1012 gradlePluginPortal()
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ dependencies {
3737}
3838
3939task springVersion (type : org.gradle.api.tasks.WriteProperties ) {
40- outputFile = file(" ${ buildDir} /versions/spring-security.versions" )
40+ destinationFile = file(" ${ buildDir} /versions/spring-security.versions" )
4141 property(" org.springframework:spring-core" , springVersion())
4242}
4343
You can’t perform that action at this time.
0 commit comments