-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
52 lines (42 loc) · 1.08 KB
/
build.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
plugins {
kotlin("multiplatform") version "1.3.50"
}
repositories {
mavenCentral()
jcenter()
}
val kotlinxIoVersion = "0.1.14"
kotlin {
jvm()
linuxX64() {
val main by compilations.getting
val interop by main.cinterops.creating
}
sourceSets {
val commonMain by getting {
dependencies {
implementation(kotlin("stdlib-common"))
implementation("org.jetbrains.kotlinx:kotlinx-io:$kotlinxIoVersion")
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
jvm().compilations["main"].defaultSourceSet {
dependencies {
implementation(kotlin("stdlib-jdk8"))
}
}
jvm().compilations["test"].defaultSourceSet {
dependencies {
implementation(kotlin("test-junit"))
}
}
}
}
tasks.withType<Wrapper> {
gradleVersion = "5.6"
}