mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28: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 {
|
dependencies {
|
||||||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30")
|
||||||
implementation("org.jetbrains.kotlin:kotlin-serialization:1.5.21")
|
implementation("org.jetbrains.kotlin:kotlin-serialization:1.5.30")
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,3 @@ val EXPERIMENTAL_ANNOTATIONS: List<String> = listOf(
|
|||||||
"kotlin.contracts.ExperimentalContracts",
|
"kotlin.contracts.ExperimentalContracts",
|
||||||
"kotlin.time.ExperimentalTime",
|
"kotlin.time.ExperimentalTime",
|
||||||
)
|
)
|
||||||
|
|
||||||
val EXPERIMENTAL_ANNOTATION_COMPILER_ARGS: List<String> =
|
|
||||||
EXPERIMENTAL_ANNOTATIONS.map { "-Xopt-in=$it" }
|
|
||||||
|
@ -8,9 +8,9 @@ repositories {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
project.extra["coroutinesVersion"] = "1.5.1"
|
project.extra["coroutinesVersion"] = "1.5.2"
|
||||||
project.extra["junitVersion"] = "5.7.1"
|
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["ktorVersion"] = "1.6.1"
|
||||||
project.extra["log4jVersion"] = "2.14.1"
|
project.extra["log4jVersion"] = "2.14.1"
|
||||||
project.extra["serializationVersion"] = "1.2.2"
|
project.extra["serializationVersion"] = "1.2.2"
|
||||||
|
@ -8,10 +8,8 @@ plugins {
|
|||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
js {
|
||||||
compilations.all {
|
compilations.configureEach {
|
||||||
kotlinOptions {
|
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::optIn)
|
||||||
freeCompilerArgs = freeCompilerArgs + EXPERIMENTAL_ANNOTATION_COMPILER_ARGS
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
browser {
|
browser {
|
||||||
testTask {
|
testTask {
|
||||||
|
@ -10,12 +10,16 @@ plugins {
|
|||||||
val junitVersion: String by project.extra
|
val junitVersion: String by project.extra
|
||||||
val log4jVersion: String by project.extra
|
val log4jVersion: String by project.extra
|
||||||
|
|
||||||
|
kotlin {
|
||||||
|
sourceSets.configureEach {
|
||||||
|
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::optIn)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
tasks.withType<KotlinCompile>().configureEach {
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = "11"
|
jvmTarget = "11"
|
||||||
freeCompilerArgs = freeCompilerArgs +
|
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all"
|
||||||
EXPERIMENTAL_ANNOTATION_COMPILER_ARGS +
|
|
||||||
"-Xjvm-default=all"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,16 +23,17 @@ kotlin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
jvm {
|
jvm {
|
||||||
compilations.all {
|
compilations.configureEach {
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = "11"
|
jvmTarget = "11"
|
||||||
|
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
all {
|
configureEach {
|
||||||
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::useExperimentalAnnotation)
|
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::optIn)
|
||||||
}
|
}
|
||||||
|
|
||||||
commonMain {
|
commonMain {
|
||||||
|
@ -21,6 +21,10 @@ val serializationVersion: String by project.extra
|
|||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
all {
|
||||||
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||||
|
}
|
||||||
|
|
||||||
commonMain {
|
commonMain {
|
||||||
kotlin.setSrcDirs(kotlin.srcDirs + generatedCommonSrc)
|
kotlin.setSrcDirs(kotlin.srcDirs + generatedCommonSrc)
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -4,6 +4,10 @@ plugins {
|
|||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
js {
|
||||||
|
compilations.configureEach {
|
||||||
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||||
|
}
|
||||||
|
|
||||||
binaries.executable()
|
binaries.executable()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,12 @@ plugins {
|
|||||||
id("world.phantasmal.jvm")
|
id("world.phantasmal.jvm")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
kotlin {
|
||||||
|
sourceSets.configureEach {
|
||||||
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":psolib"))
|
implementation(project(":psolib"))
|
||||||
implementation(project(":web:shared"))
|
implementation(project(":web:shared"))
|
||||||
|
@ -5,6 +5,9 @@ plugins {
|
|||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
js {
|
||||||
|
compilations.configureEach {
|
||||||
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||||
|
}
|
||||||
browser {
|
browser {
|
||||||
commonWebpackConfig {
|
commonWebpackConfig {
|
||||||
cssSupport.enabled = true
|
cssSupport.enabled = true
|
||||||
|
@ -7,6 +7,9 @@ val serializationVersion: String by project.extra
|
|||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
configureEach {
|
||||||
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
||||||
|
}
|
||||||
commonMain {
|
commonMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":psolib"))
|
api(project(":psolib"))
|
||||||
|
Loading…
Reference in New Issue
Block a user