Upgrade to Gradle 7.2

This commit upgrades Gradle to 7.2.
Gradle configuration names are updated accordingly.
This also upgrades Gradle build plugins.

See gh-26870
This commit is contained in:
Brian Clozel
2021-05-21 21:16:30 +02:00
parent 2db1e6daad
commit cecc0849a8
28 changed files with 527 additions and 490 deletions

View File

@@ -3,8 +3,8 @@ description = "Spring Expression Language (SpEL)"
apply plugin: "kotlin"
dependencies {
compile(project(":spring-core"))
testCompile(testFixtures(project(":spring-core")))
testCompile("org.jetbrains.kotlin:kotlin-reflect")
testCompile("org.jetbrains.kotlin:kotlin-stdlib")
api(project(":spring-core"))
testImplementation(testFixtures(project(":spring-core")))
testImplementation("org.jetbrains.kotlin:kotlin-reflect")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib")
}