33 lines
753 B
Groovy
33 lines
753 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.jvm" version "1.1.50" apply false
|
|
}
|
|
|
|
allprojects{
|
|
apply plugin: 'idea'
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
|
|
group = 'inr.numass'
|
|
version = '1.0.0'
|
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
|
|
// 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.+"
|
|
}
|
|
|
|
} |