mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
Upgraded Kotlin from 1.5.21 to 1.5.30. Also upgraded kotlinx.coroutines and kotlin logging. Now using languageSettings.optIn everywhere instead of compiler options.
This commit is contained in:
parent
7cdeb1b816
commit
19d3030d20
@ -7,6 +7,6 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
|
||||
implementation("org.jetbrains.kotlin:kotlin-serialization:1.5.21")
|
||||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30")
|
||||
implementation("org.jetbrains.kotlin:kotlin-serialization:1.5.30")
|
||||
}
|
||||
|
@ -6,6 +6,3 @@ val EXPERIMENTAL_ANNOTATIONS: List<String> = listOf(
|
||||
"kotlin.contracts.ExperimentalContracts",
|
||||
"kotlin.time.ExperimentalTime",
|
||||
)
|
||||
|
||||
val EXPERIMENTAL_ANNOTATION_COMPILER_ARGS: List<String> =
|
||||
EXPERIMENTAL_ANNOTATIONS.map { "-Xopt-in=$it" }
|
||||
|
@ -8,9 +8,9 @@ repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
project.extra["coroutinesVersion"] = "1.5.1"
|
||||
project.extra["coroutinesVersion"] = "1.5.2"
|
||||
project.extra["junitVersion"] = "5.7.1"
|
||||
project.extra["kotlinLoggingVersion"] = "2.0.6"
|
||||
project.extra["kotlinLoggingVersion"] = "2.0.11"
|
||||
project.extra["ktorVersion"] = "1.6.1"
|
||||
project.extra["log4jVersion"] = "2.14.1"
|
||||
project.extra["serializationVersion"] = "1.2.2"
|
||||
|
@ -8,10 +8,8 @@ plugins {
|
||||
|
||||
kotlin {
|
||||
js {
|
||||
compilations.all {
|
||||
kotlinOptions {
|
||||
freeCompilerArgs = freeCompilerArgs + EXPERIMENTAL_ANNOTATION_COMPILER_ARGS
|
||||
}
|
||||
compilations.configureEach {
|
||||
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::optIn)
|
||||
}
|
||||
browser {
|
||||
testTask {
|
||||
|
@ -10,12 +10,16 @@ plugins {
|
||||
val junitVersion: String by project.extra
|
||||
val log4jVersion: String by project.extra
|
||||
|
||||
kotlin {
|
||||
sourceSets.configureEach {
|
||||
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::optIn)
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType<KotlinCompile>().configureEach {
|
||||
kotlinOptions {
|
||||
jvmTarget = "11"
|
||||
freeCompilerArgs = freeCompilerArgs +
|
||||
EXPERIMENTAL_ANNOTATION_COMPILER_ARGS +
|
||||
"-Xjvm-default=all"
|
||||
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -23,16 +23,17 @@ kotlin {
|
||||
}
|
||||
|
||||
jvm {
|
||||
compilations.all {
|
||||
compilations.configureEach {
|
||||
kotlinOptions {
|
||||
jvmTarget = "11"
|
||||
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
all {
|
||||
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::useExperimentalAnnotation)
|
||||
configureEach {
|
||||
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::optIn)
|
||||
}
|
||||
|
||||
commonMain {
|
||||
|
@ -21,6 +21,10 @@ val serializationVersion: String by project.extra
|
||||
|
||||
kotlin {
|
||||
sourceSets {
|
||||
all {
|
||||
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||
}
|
||||
|
||||
commonMain {
|
||||
kotlin.setSrcDirs(kotlin.srcDirs + generatedCommonSrc)
|
||||
dependencies {
|
||||
|
@ -4,6 +4,10 @@ plugins {
|
||||
|
||||
kotlin {
|
||||
js {
|
||||
compilations.configureEach {
|
||||
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||
}
|
||||
|
||||
binaries.executable()
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,12 @@ plugins {
|
||||
id("world.phantasmal.jvm")
|
||||
}
|
||||
|
||||
kotlin {
|
||||
sourceSets.configureEach {
|
||||
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":psolib"))
|
||||
implementation(project(":web:shared"))
|
||||
|
@ -5,6 +5,9 @@ plugins {
|
||||
|
||||
kotlin {
|
||||
js {
|
||||
compilations.configureEach {
|
||||
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||
}
|
||||
browser {
|
||||
commonWebpackConfig {
|
||||
cssSupport.enabled = true
|
||||
|
@ -7,6 +7,9 @@ val serializationVersion: String by project.extra
|
||||
|
||||
kotlin {
|
||||
sourceSets {
|
||||
configureEach {
|
||||
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||
}
|
||||
commonMain {
|
||||
dependencies {
|
||||
api(project(":psolib"))
|
||||
|
Loading…
Reference in New Issue
Block a user