2010-10-11 14:38:03 -05:00
|
|
|
apply plugin: 'groovy'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
|
2010-10-12 15:39:33 -05:00
|
|
|
buildDir = "target"
|
|
|
|
|
2010-10-11 14:38:03 -05:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2011-02-07 18:20:50 -06:00
|
|
|
mavenLocal()
|
2010-10-11 14:38:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2011-03-21 20:33:19 -05:00
|
|
|
// common
|
2010-10-11 14:38:03 -05:00
|
|
|
compile gradleApi()
|
|
|
|
compile localGroovy()
|
|
|
|
compile 'org.apache.ant:ant:1.7.0'
|
|
|
|
compile 'org.apache.maven:maven-ant-tasks:2.1.0'
|
2011-03-21 20:33:19 -05:00
|
|
|
|
|
|
|
// needed?
|
2010-10-11 14:38:03 -05:00
|
|
|
compile 'org.apache.maven.wagon:wagon-http:1.0-beta-6'
|
2011-03-21 20:33:19 -05:00
|
|
|
|
|
|
|
// injection plugin
|
|
|
|
compile 'javassist:javassist:3.12.0.GA'
|
|
|
|
|
2010-10-11 14:38:03 -05:00
|
|
|
groovy localGroovy()
|
2010-10-12 15:39:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ideaModule {
|
2010-10-11 14:38:03 -05:00
|
|
|
}
|