-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathktorm.base.gradle.kts
59 lines (48 loc) · 1.17 KB
/
ktorm.base.gradle.kts
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
group = rootProject.group
version = rootProject.version
plugins {
id("kotlin")
id("org.gradle.jacoco")
id("io.gitlab.arturbosch.detekt")
}
repositories {
mavenCentral()
}
dependencies {
api(kotlin("stdlib"))
api(kotlin("reflect"))
testImplementation(kotlin("test-junit"))
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:${detekt.toolVersion}")
}
detekt {
source.setFrom("src/main/kotlin")
config.setFrom("${project.rootDir}/detekt.yml")
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks {
// Lifecycle task for code generation.
val codegen by registering { /* do nothing */ }
compileKotlin {
dependsOn(codegen)
kotlinOptions {
jvmTarget = "1.8"
allWarningsAsErrors = true
freeCompilerArgs = listOf("-Xexplicit-api=strict")
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
jacocoTestReport {
reports {
csv.required.set(true)
xml.required.set(true)
html.required.set(true)
}
}
}