Skip to content

Commit 07b71f5

Browse files
committed
Add test report
1 parent 1f0a79f commit 07b71f5

File tree

5 files changed

+544
-95
lines changed

5 files changed

+544
-95
lines changed

build.gradle

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
plugins {
22
id 'groovy'
33
id 'java'
4-
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
54
}
65

76
group 'lv.id.jc'
@@ -13,22 +12,17 @@ repositories {
1312

1413
dependencies {
1514
implementation 'org.codehaus.groovy:groovy-all:3.0.9'
16-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
1715

1816
testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
1917
testImplementation 'org.codehaus.groovy:groovy-all:3.0.9'
18+
19+
testRuntimeClasspath( "com.athaydes:spock-reports:2.1.1-groovy-3.0" ) {
20+
// transitive = false // this avoids affecting your version of Groovy/Spock
21+
}
22+
testImplementation 'org.slf4j:slf4j-api:1.7.32'
23+
testRuntimeClasspath 'org.slf4j:slf4j-simple:1.7.32'
2024
}
2125

2226
test {
2327
useJUnitPlatform()
2428
}
25-
compileKotlin {
26-
kotlinOptions {
27-
jvmTarget = "1.8"
28-
}
29-
}
30-
compileTestKotlin {
31-
kotlinOptions {
32-
jvmTarget = "1.8"
33-
}
34-
}

docs/small.gif

3.51 KB
Loading

0 commit comments

Comments
 (0)