13 lines
403 B
Groovy
13 lines
403 B
Groovy
description = "Spring AOP"
|
|
|
|
dependencies {
|
|
compile(project(":spring-beans"))
|
|
compile(project(":spring-core"))
|
|
optional("org.aspectj:aspectjweaver")
|
|
optional("org.apache.commons:commons-pool2")
|
|
optional("com.jamonapi:jamon")
|
|
testCompile(testFixtures(project(":spring-beans")))
|
|
testCompile(testFixtures(project(":spring-core")))
|
|
testFixturesImplementation(testFixtures(project(":spring-core")))
|
|
}
|