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-07-24 18:14:43 +08:00
|
|
|
kotlin("js") version "1.5.21" apply false
|
|
|
|
kotlin("multiplatform") version "1.5.21" apply false
|
|
|
|
kotlin("plugin.serialization") version "1.5.21" apply false
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.wrapper {
|
2021-07-24 18:14:43 +08:00
|
|
|
gradleVersion = "7.1.1"
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
2021-07-24 18:14:43 +08:00
|
|
|
project.extra["coroutinesVersion"] = "1.5.1"
|
2021-03-20 04:32:57 +08:00
|
|
|
project.extra["junitVersion"] = "5.7.1"
|
2021-04-19 02:10:10 +08:00
|
|
|
project.extra["kotlinLoggingVersion"] = "2.0.6"
|
2021-07-24 18:14:43 +08:00
|
|
|
project.extra["ktorVersion"] = "1.6.1"
|
2021-04-19 02:10:10 +08:00
|
|
|
project.extra["log4jVersion"] = "2.14.1"
|
2021-07-24 18:14:43 +08:00
|
|
|
project.extra["serializationVersion"] = "1.2.2"
|
2020-10-29 07:09:22 +08:00
|
|
|
project.extra["slf4jVersion"] = "1.7.30"
|
2020-10-11 05:48:38 +08:00
|
|
|
|
|
|
|
repositories {
|
2021-04-19 02:10:10 +08:00
|
|
|
mavenCentral()
|
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
|
|
|
}
|