Files
Theatrical-Players-Refactor…/java/build.gradle
2019-11-14 09:30:28 +02:00

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'
}