2021-03-19 03:43:03 +08:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.Kotlin2JsCompile
|
2021-03-20 04:32:57 +08:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
2021-03-19 03:43:03 +08:00
|
|
|
|
2020-10-11 05:48:38 +08:00
|
|
|
plugins {
|
2021-03-23 22:27:27 +08:00
|
|
|
kotlin("js") version "1.4.31" apply false
|
|
|
|
kotlin("multiplatform") version "1.4.31" apply false
|
|
|
|
kotlin("plugin.serialization") version "1.4.31" apply false
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.wrapper {
|
2021-03-06 20:33:04 +08:00
|
|
|
gradleVersion = "6.8.2"
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
2020-12-15 01:39:26 +08:00
|
|
|
project.extra["coroutinesVersion"] = "1.4.2"
|
2021-03-20 04:32:57 +08:00
|
|
|
project.extra["junitVersion"] = "5.7.1"
|
2020-10-11 05:48:38 +08:00
|
|
|
project.extra["kotlinLoggingVersion"] = "2.0.2"
|
2020-12-15 01:39:26 +08:00
|
|
|
project.extra["ktorVersion"] = "1.4.3"
|
2021-03-13 04:53:49 +08:00
|
|
|
project.extra["log4jVersion"] = "2.14.0"
|
2021-03-24 04:18:00 +08:00
|
|
|
project.extra["serializationVersion"] = "1.1.0"
|
2020-10-29 07:09:22 +08:00
|
|
|
project.extra["slf4jVersion"] = "1.7.30"
|
2020-10-11 05:48:38 +08:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2020-11-29 05:56:35 +08:00
|
|
|
maven(url = "https://kotlin.bintray.com/kotlinx/")
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
2021-03-19 03:43:03 +08:00
|
|
|
|
2021-03-20 04:32:57 +08:00
|
|
|
tasks.withType<KotlinCompile> {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "11"
|
|
|
|
freeCompilerArgs += listOf(
|
|
|
|
"-Xjvm-default=all"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-19 03:43:03 +08:00
|
|
|
tasks.withType<Kotlin2JsCompile> {
|
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
|
"-Xopt-in=kotlin.RequiresOptIn",
|
|
|
|
"-Xopt-in=kotlin.ExperimentalUnsignedTypes",
|
|
|
|
"-Xopt-in=kotlin.contracts.ExperimentalContracts",
|
|
|
|
"-Xopt-in=kotlin.time.ExperimentalTime"
|
|
|
|
)
|
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|