2017-08-21 20:41:46 +08:00
|
|
|
description = "Spring Beans"
|
|
|
|
|
2019-08-21 02:26:43 +08:00
|
|
|
apply plugin: "kotlin"
|
2017-08-21 20:41:46 +08:00
|
|
|
|
|
|
|
dependencies {
|
2021-05-22 03:16:30 +08:00
|
|
|
api(project(":spring-core"))
|
2021-09-17 15:14:07 +08:00
|
|
|
optional("jakarta.inject:jakarta.inject-api")
|
2022-02-05 04:01:02 +08:00
|
|
|
optional("org.apache.groovy:groovy-xml")
|
2019-07-19 16:20:35 +08:00
|
|
|
optional("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
optional("org.jetbrains.kotlin:kotlin-stdlib")
|
2023-06-03 02:40:55 +08:00
|
|
|
optional("org.reactivestreams:reactive-streams")
|
2023-08-02 06:56:50 +08:00
|
|
|
optional("org.yaml:snakeyaml")
|
2019-12-29 00:13:39 +08:00
|
|
|
testFixturesApi("org.junit.jupiter:junit-jupiter-api")
|
2023-08-02 06:56:50 +08:00
|
|
|
testFixturesImplementation("org.assertj:assertj-core")
|
|
|
|
testImplementation(project(":spring-core-test"))
|
|
|
|
testImplementation(testFixtures(project(":spring-core")))
|
|
|
|
testImplementation("jakarta.annotation:jakarta.annotation-api")
|
|
|
|
}
|