You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
667 B
25 lines
667 B
apply plugin: 'io.spring.convention.spring-module' |
|
apply plugin: 'io.freefair.aspectj' |
|
|
|
dependencies { |
|
compile "org.aspectj:aspectjrt" |
|
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' |
|
testAspect sourceSets.main.output |
|
} |
|
|
|
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" |
|
|
|
aspectj { |
|
version = aspectjVersion |
|
}
|
|
|