21 lines
493 B
Groovy
21 lines
493 B
Groovy
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'groovy'
|
|
|
|
dependencies {
|
|
testImplementation 'org.spockframework:spock-core:2.0-M5-groovy-3.0'
|
|
testImplementation "org.slf4j:slf4j-api:${slf4jVersion}"
|
|
|
|
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
|
|
implementation "org.slf4j:slf4j-simple:${slf4jVersion}"
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|