1
0
mirror of synced 2026-08-04 17:27:13 +00:00
Files
spring-security/aspects/spring-security-aspects.gradle
T

26 lines
667 B
Groovy
Raw Permalink Normal View History

2017-03-28 15:45:30 -05:00
apply plugin: 'io.spring.convention.spring-module'
2019-08-05 02:21:03 +02:00
apply plugin: 'io.freefair.aspectj'
2017-03-28 15:45:30 -05:00
dependencies {
2019-08-05 02:21:03 +02:00
compile "org.aspectj:aspectjrt"
2017-03-28 15:45:30 -05:00
compile project(':spring-security-core')
compile 'org.springframework:spring-beans'
compile 'org.springframework:spring-context'
compile 'org.springframework:spring-core'
testCompile 'org.springframework:spring-aop'
2019-08-05 02:21:03 +02:00
testAspect sourceSets.main.output
2017-03-28 15:45:30 -05:00
}
2019-08-05 02:21:03 +02:00
sourceSets.main.aspectj.srcDir "src/main/java"
sourceSets.main.java.srcDirs = files()
sourceSets.test.aspectj.srcDir "src/test/java"
sourceSets.test.java.srcDirs = files()
compileAspectj.ajcOptions.outxmlfile = "META-INF/aop.xml"
2019-08-12 14:19:50 -05:00
aspectj {
version = aspectjVersion
}