mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-01-14 15:43:27 +01:00
22 lines
386 B
Groovy
22 lines
386 B
Groovy
apply plugin: 'java'
|
|
|
|
group 'kata'
|
|
version '1.0-SNAPSHOT'
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
|
|
testImplementation 'com.approvaltests:approvaltests:4.0.2'
|
|
}
|