forked from ReKotlin/ReKotlin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
35 lines (30 loc) · 876 Bytes
/
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
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.4.32"
id 'org.jetbrains.dokka' version "1.4.32"
}
allprojects {
repositories {
mavenCentral()
jcenter()
}
apply plugin: 'kotlin'
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.32'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.1'
}
test {
testLogging.showStandardStreams = true
useJUnitPlatform()
testLogging {
// set options for log level LIFECYCLE
events "failed", "passed"
exceptionFormat "short"
}
}
}
subprojects {
apply plugin: 'org.jetbrains.dokka'
apply from: "${rootDir}/gradle/jacoco.gradle"
apply from: "${rootDir}/gradle/publish.gradle"
}