Files
spring-framework/spring-expression/spring-expression.gradle
Brian Clozel cecc0849a8 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
2021-09-13 09:37:35 +02:00

11 lines
298 B
Groovy

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