27 lines
634 B
Groovy
27 lines
634 B
Groovy
apply plugin: 'idea'
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'idea'
|
|
|
|
group = 'inr.numass'
|
|
version = '1.0.0'
|
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
|
|
// tasks.withType(JavaCompile) {
|
|
// options.compilerArgs << "-Xlint:deprecation" << "-Xlint:unchecked"
|
|
// }
|
|
|
|
dependencies {
|
|
testCompile 'org.codehaus.groovy:groovy-all:2.4.+'
|
|
testCompile group: 'junit', name: 'junit', version: '4.+'
|
|
testCompile "org.spockframework:spock-core:1.0-groovy-2.+"
|
|
}
|
|
|
|
} |