Skip to content

Commit

Permalink
Update to Kotlin 1.8.0 (#2146)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandwwraith authored Jan 5, 2023
1 parent 1c223b8 commit 581fc3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Java9Modularity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object Java9Modularity {
val ideaActive = System.getProperty("idea.active") == "true"
if (disableJPMS || ideaActive) return
val kotlin = extensions.findByType<KotlinProjectExtension>() ?: return
val jvmTargets = kotlin.targets.filter { it is KotlinJvmTarget || it is KotlinWithJavaTarget<*> }
val jvmTargets = kotlin.targets.filter { it is KotlinJvmTarget || it is KotlinWithJavaTarget<*, *> }
if (jvmTargets.isEmpty()) {
logger.warn("No Kotlin JVM targets found, can't configure compilation of module-info!")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
group=org.jetbrains.kotlinx
version=1.5.0-SNAPSHOT

kotlin.version=1.7.20
kotlin.version=1.8.0

# This version take precedence if 'bootstrap' property passed to project
kotlin.version.snapshot=1.8.255-SNAPSHOT
Expand Down
2 changes: 1 addition & 1 deletion integration-test/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
#

mainKotlinVersion=1.7.20
mainKotlinVersion=1.8.0
mainLibVersion=1.5.0-SNAPSHOT

kotlin.code.style=official
Expand Down

0 comments on commit 581fc3f

Please sign in to comment.