-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
85 lines (70 loc) · 2.16 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
group 'de.paschelino'
version '0.0.1-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.2.10'
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.junit.platform:junit-platform-gradle-plugin:1.0.2"
}
}
apply plugin: "kotlin"
apply plugin: "org.junit.platform.gradle.plugin"
apply plugin: "jacoco"
repositories {
mavenCentral()
jcenter()
maven { url "http://dl.bintray.com/jetbrains/spek" }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testCompile "org.hamcrest:hamcrest-junit:2.0.0.0"
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
testCompile ('org.jetbrains.spek:spek-api:1.1.5') {
exclude group: 'org.jetbrains.kotlin'
}
testRuntime ('org.jetbrains.spek:spek-junit-platform-engine:1.1.5') {
exclude group: 'org.junit.platform'
exclude group: 'org.jetbrains.kotlin'
}
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
junitPlatform {
// logManager 'org.apache.logging.log4j.jul.LogManager'
reportsDir file('build/test-results/junit-platform') // this is the default
enableStandardTestTask true
// selectors (optional)
filters {
engines {
include 'spek'
}
}
}
project.afterEvaluate {
def junitPlatformTestTask = project.tasks.getByName('junitPlatformTest')
jacoco {
toolVersion = "+"
reportsDir = file("$buildDir/reports/jacoco")
applyTo junitPlatformTestTask
}
project.task(type: JacocoReport, "junitPlatformJacocoReport", {
sourceDirectories = files("src/main/kotlin")
classDirectories = files("$buildDir/classes/kotlin/main")
reports {
xml.enabled = false
csv.enabled = false
html.enabled = true
html.destination = new File("${buildDir}/reports/jacoco/test/jacocoTestReport.html")
}
executionData junitPlatformTestTask
})
}