mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-03-26 19:31:50 +01:00
Added java version of the excersise
This commit is contained in:
21
java/build.gradle
Normal file
21
java/build.gradle
Normal file
@@ -0,0 +1,21 @@
|
||||
apply plugin: 'java'
|
||||
|
||||
group 'kata'
|
||||
version '1.0-SNAPSHOT'
|
||||
sourceCompatibility = 12
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
testLogging {
|
||||
events "passed", "skipped", "failed"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testCompile 'org.junit.jupiter:junit-jupiter:5.5.1'
|
||||
testCompile 'org.assertj:assertj-core:3.13.2'
|
||||
}
|
||||
Reference in New Issue
Block a user