2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Expression Language (SpEL)"
|
|
|
|
|
2019-11-13 21:22:11 +08:00
|
|
|
apply plugin: "kotlin"
|
|
|
|
|
2017-08-21 20:41:55 +08:00
|
|
|
dependencies {
|
2021-05-22 03:16:30 +08:00
|
|
|
api(project(":spring-core"))
|
2023-08-11 22:52:44 +08:00
|
|
|
optional("org.jetbrains.kotlin:kotlin-reflect")
|
2021-05-22 03:16:30 +08:00
|
|
|
testImplementation(testFixtures(project(":spring-core")))
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-stdlib")
|
2021-02-01 10:50:39 +08:00
|
|
|
testImplementation("com.fasterxml.jackson.core:jackson-databind")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|