2021-05-01 12:44:55 +00:00
|
|
|
subprojects {
|
|
|
|
apply plugin: 'java'
|
2021-05-04 15:54:47 +00:00
|
|
|
apply plugin: 'groovy'
|
2021-05-01 12:44:55 +00:00
|
|
|
|
|
|
|
dependencies {
|
2021-05-04 15:54:47 +00:00
|
|
|
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}"
|
2021-05-01 12:44:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2021-05-04 15:54:47 +00:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
}
|