2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring AOP"
|
|
|
|
|
2023-08-25 04:09:19 +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-beans"))
|
|
|
|
api(project(":spring-core"))
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("org.apache.commons:commons-pool2")
|
2023-08-02 06:56:50 +08:00
|
|
|
optional("org.aspectj:aspectjweaver")
|
2023-08-25 04:09:19 +08:00
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
2021-05-22 03:16:30 +08:00
|
|
|
testFixturesImplementation(testFixtures(project(":spring-beans")))
|
2019-12-30 02:15:23 +08:00
|
|
|
testFixturesImplementation(testFixtures(project(":spring-core")))
|
2023-06-26 18:03:07 +08:00
|
|
|
testFixturesImplementation("com.google.code.findbugs:jsr305")
|
2023-08-02 06:56:50 +08:00
|
|
|
testImplementation(project(":spring-core-test"))
|
|
|
|
testImplementation(testFixtures(project(":spring-beans")))
|
|
|
|
testImplementation(testFixtures(project(":spring-core")))
|
2023-08-25 04:09:19 +08:00
|
|
|
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|