Merge branch '6.0.x' into 6.1.x
This commit is contained in:
commit
99c84aa935
|
@ -88,7 +88,9 @@ tasks.named("dispatchGitHubWorkflow") {
|
|||
|
||||
subprojects {
|
||||
plugins.withType(JavaPlugin) {
|
||||
project.sourceCompatibility=JavaVersion.VERSION_17
|
||||
java {
|
||||
sourceCompatibility=JavaVersion.VERSION_17
|
||||
}
|
||||
}
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = "UTF-8"
|
||||
|
|
|
@ -4,7 +4,9 @@ plugins {
|
|||
id "groovy"
|
||||
}
|
||||
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
|
|
|
@ -37,7 +37,7 @@ dependencies {
|
|||
}
|
||||
|
||||
task springVersion(type: org.gradle.api.tasks.WriteProperties) {
|
||||
outputFile = file("${buildDir}/versions/spring-security.versions")
|
||||
destinationFile = file("${buildDir}/versions/spring-security.versions")
|
||||
property("org.springframework:spring-core", springVersion())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue