mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-03-18 07:24:36 +01:00
22 lines
352 B
Groovy
22 lines
352 B
Groovy
apply plugin: 'java'
|
|
|
|
group 'kata'
|
|
version '1.0-SNAPSHOT'
|
|
sourceCompatibility = 11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'org.junit.jupiter:junit-jupiter:5.5.1'
|
|
testCompile 'com.approvaltests:approvaltests:3.2.0'
|
|
}
|