-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
102 lines (94 loc) · 2.15 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
buildscript {
ext.kotlin_version = '1.8.10'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'org.jetbrains.kotlin.multiplatform' version '1.8.10'
id "io.gitlab.arturbosch.detekt" version "1.22.0"
id "org.jlleitschuh.gradle.ktlint" version "11.2.0"
id 'org.jetbrains.kotlinx.kover' version '0.6.1'
}
repositories {
mavenCentral()
}
group 'com.example'
version '0.0.1'
apply plugin: 'maven-publish'
kotlin {
jvm {
kover {
disabled = false
}
}
js {
nodejs {
testTask {
useMocha {
timeout = "15000"
}
}
}
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib-common')
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmMain {
dependencies {
implementation kotlin('stdlib-jdk8')
}
}
jvmTest {
dependencies {
implementation kotlin('test')
implementation kotlin('test-junit')
}
}
jsMain {
dependencies {
implementation kotlin('stdlib-js')
}
}
jsTest {
dependencies {
implementation kotlin('test-js')
}
}
}
targets {
configure([]) {
tasks.getByName(compilations.main.compileKotlinTaskName).kotlinOptions {
jvmTarget = "1.8"
}
}
}
}
tasks.koverVerify {
rule {
name = "Minimal line coverage rate in percent"
bound {
minValue = 90
}
}
}
detekt {
config = files("config/detekt.yml")
input = files("src/commonMain/kotlin")
}
jvmTest {
}
assemble.dependsOn check