- Split the AspectJ testcode out of the general testdata project. - Adjusted tests to handle that JDT produces different code to AspectJ. - Modified some tests to work better with javac compiled testdata (which is what happens when building on the command line or build machine)
18 lines
440 B
Groovy
18 lines
440 B
Groovy
dependencies {
|
|
/*
|
|
tools "org.aspectj:aspectjtools:$aspectjVersion"
|
|
compile "org.aspectj:aspectjrt:$aspectjVersion"
|
|
*/
|
|
compile("cglib:cglib:2.2.2") { exclude group: 'asm' } // cglib 2.2.2 depends on asm 3.3
|
|
compile 'org.ow2.asm:asm:5.0_BETA'
|
|
compile 'org.ow2.asm:asm-tree:5.0_BETA'
|
|
compile files("code.jar")
|
|
}
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir 'src'
|
|
}
|
|
}
|
|
}
|