We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c905b commit 765d643Copy full SHA for 765d643
build.gradle
@@ -18,6 +18,9 @@ repositories {
18
dependencies {
19
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
20
implementation "org.fusesource.jansi:jansi:1.18"
21
+
22
+ testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
23
+ testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
24
}
25
26
compileKotlin {
@@ -28,6 +31,10 @@ compileTestKotlin {
28
31
kotlinOptions.jvmTarget = "1.8"
29
32
30
33
34
+test {
35
+ useJUnitPlatform()
36
+}
37
38
// ########## //
39
// Publishing //
40
0 commit comments