-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle.kts
43 lines (36 loc) · 951 Bytes
/
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("multiplatform")
kotlin("plugin.serialization")
}
kotlin {
jvm {
withJava()
}
js(IR) {
nodejs()
binaries.executable()
}
sourceSets {
val jvmMain by getting {
dependencies {
// 3-15
implementation("org.jetbrains.kotlin:kotlin-reflect:${Version.kotlin}")
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-moshi:2.9.0")
implementation("com.squareup.moshi:moshi-kotlin:1.13.0")
implementation("com.google.code.gson:gson:2.9.0")
implementation("org.jetbrains.kotlinx:kotlinx-metadata-jvm:${Version.kotlinxMetadataJvm}")
}
}
}
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xcontext-receivers")
}
}
// 3-11
tasks.withType<JavaCompile> {
options.compilerArgs.add("-parameters")
}