2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring AOP"
|
|
|
|
|
|
|
|
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.aspectj:aspectjweaver")
|
|
|
|
optional("org.apache.commons:commons-pool2")
|
2022-04-27 11:48:24 +08:00
|
|
|
testImplementation(project(":spring-core-test"))
|
2021-05-22 03:16:30 +08:00
|
|
|
testImplementation(testFixtures(project(":spring-beans")))
|
|
|
|
testImplementation(testFixtures(project(":spring-core")))
|
|
|
|
testFixturesImplementation(testFixtures(project(":spring-beans")))
|
2019-12-30 02:15:23 +08:00
|
|
|
testFixturesImplementation(testFixtures(project(":spring-core")))
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|