2010-10-11 15:38:03 -04:00
|
|
|
apply plugin: 'groovy'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
|
2010-10-12 16:39:33 -04:00
|
|
|
buildDir = "target"
|
|
|
|
|
2010-10-11 15:38:03 -04:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2011-02-07 19:20:50 -05:00
|
|
|
mavenLocal()
|
2011-03-29 16:14:09 -04:00
|
|
|
mavenRepo name: "jboss", urls: "http://repository.jboss.org/nexus/content/groups/public/"
|
2010-10-11 15:38:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2011-03-21 21:33:19 -04:00
|
|
|
// common
|
2010-10-11 15:38:03 -04: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 21:33:19 -04:00
|
|
|
|
|
|
|
// needed?
|
2010-10-11 15:38:03 -04:00
|
|
|
compile 'org.apache.maven.wagon:wagon-http:1.0-beta-6'
|
2011-03-21 21:33:19 -04:00
|
|
|
|
|
|
|
// injection plugin
|
|
|
|
compile 'javassist:javassist:3.12.0.GA'
|
|
|
|
|
2010-10-11 15:38:03 -04:00
|
|
|
groovy localGroovy()
|
2010-10-12 16:39:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ideaModule {
|
2010-10-11 15:38:03 -04:00
|
|
|
}
|