mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-05-03 12:29:44 +01:00
cecc0849a8
This commit upgrades Gradle to 7.2. Gradle configuration names are updated accordingly. This also upgrades Gradle build plugins. See gh-26870
14 lines
477 B
Groovy
14 lines
477 B
Groovy
description = "Spring AOP"
|
|
|
|
dependencies {
|
|
api(project(":spring-beans"))
|
|
api(project(":spring-core"))
|
|
optional("org.aspectj:aspectjweaver")
|
|
optional("org.apache.commons:commons-pool2")
|
|
optional("com.jamonapi:jamon")
|
|
testImplementation(testFixtures(project(":spring-beans")))
|
|
testImplementation(testFixtures(project(":spring-core")))
|
|
testFixturesImplementation(testFixtures(project(":spring-beans")))
|
|
testFixturesImplementation(testFixtures(project(":spring-core")))
|
|
}
|