Revert "Upgrade to Kotlin 1.7, add -Xskip-metadata-version-check to buildSrc"

This reverts commit d24230099a.
This commit is contained in:
Edwin Jakobs
2022-06-13 13:48:48 +02:00
parent d24230099a
commit 7a4b123d99
2 changed files with 7 additions and 14 deletions

View File

@@ -40,10 +40,10 @@ def multiplatformModules = [
def doNotPublish = ["openrndr-demos"] def doNotPublish = ["openrndr-demos"]
project.ext { project.ext {
kotlinApiVersion = '1.7' kotlinApiVersion = '1.6'
kotlinLanguageVersion = '1.7' kotlinLanguageVersion = '1.6'
kotlinVersion = '1.7.0' kotlinVersion = '1.6.20'
kotlinxCoroutinesVersion = '1.6.1' kotlinxCoroutinesVersion = '1.6.0'
kotlinLoggingVersion = '2.1.21' kotlinLoggingVersion = '2.1.21'
kotlinxSerializationVersion = '1.3.2' kotlinxSerializationVersion = '1.3.2'
spekVersion = '2.0.15' spekVersion = '2.0.15'
@@ -66,8 +66,8 @@ def openrndrUseSnapshot = isReleaseVersion
project.ext { project.ext {
openrndrVersion = ((findProperty("OPENRNDR.version")?:System.getenv("OPENRNDR_VERSION")) ?.replace("v","")) ?: "0.5.1-SNAPSHOT" openrndrVersion = ((findProperty("OPENRNDR.version")?:System.getenv("OPENRNDR_VERSION")) ?.replace("v","")) ?: "0.5.1-SNAPSHOT"
jvmTarget = "1.8" jvmTarget = "1.8"
kotlinVersion = "1.7.0" kotlinVersion = "1.6.20"
kotlinApiVersion = "1.7" kotlinApiVersion = "1.6"
spekVersion = "2.0.15" spekVersion = "2.0.15"
libfreenectVersion = "0.5.7-1.5.7" libfreenectVersion = "0.5.7-1.5.7"
librealsense2Version = "2.50.0-1.5.7" librealsense2Version = "2.50.0-1.5.7"

View File

@@ -31,10 +31,3 @@ dependencies {
} }
tasks.getByName("compileKotlin").dependsOn("compilePreloadKotlin") tasks.getByName("compileKotlin").dependsOn("compilePreloadKotlin")
// Here we deal with Gradle 7.4.2 using Kotlin 1.5 while OPENRNDR is compiled using Kotlin 1.7
// This seems to work at this point in time but may cause serious problems in future scenarios in which either Kotlin,
// Gradle or OPENRNDR are upgraded.
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.freeCompilerArgs = listOf("-Xskip-metadata-version-check")
}