mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-11 20:02:09 +00:00
22 lines
425 B
Groovy
22 lines
425 B
Groovy
apply plugin: "groovy"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
|
|
dependencies {
|
|
implementation 'org.codehaus.groovy:groovy:3.0.8'
|
|
testImplementation platform('org.spockframework:spock-bom:2.0-groovy-3.0')
|
|
testImplementation 'org.spockframework:spock-core'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|