- remove checked-in jars (except the ones loaded by tests) - configure eclipse settings for STS
14 lines
143 B
Groovy
14 lines
143 B
Groovy
apply plugin: "groovy"
|
|
|
|
dependencies {
|
|
compile 'org.codehaus.groovy:groovy:1.8.2'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
groovy {
|
|
srcDir 'src'
|
|
}
|
|
}
|
|
}
|