Skip to content

Commit 581fc3f

Browse files
authored
Update to Kotlin 1.8.0 (#2146)
1 parent 1c223b8 commit 581fc3f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

buildSrc/src/main/kotlin/Java9Modularity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ object Java9Modularity {
2323
val ideaActive = System.getProperty("idea.active") == "true"
2424
if (disableJPMS || ideaActive) return
2525
val kotlin = extensions.findByType<KotlinProjectExtension>() ?: return
26-
val jvmTargets = kotlin.targets.filter { it is KotlinJvmTarget || it is KotlinWithJavaTarget<*> }
26+
val jvmTargets = kotlin.targets.filter { it is KotlinJvmTarget || it is KotlinWithJavaTarget<*, *> }
2727
if (jvmTargets.isEmpty()) {
2828
logger.warn("No Kotlin JVM targets found, can't configure compilation of module-info!")
2929
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
group=org.jetbrains.kotlinx
66
version=1.5.0-SNAPSHOT
77

8-
kotlin.version=1.7.20
8+
kotlin.version=1.8.0
99

1010
# This version take precedence if 'bootstrap' property passed to project
1111
kotlin.version.snapshot=1.8.255-SNAPSHOT

integration-test/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
#
44

5-
mainKotlinVersion=1.7.20
5+
mainKotlinVersion=1.8.0
66
mainLibVersion=1.5.0-SNAPSHOT
77

88
kotlin.code.style=official

0 commit comments

Comments
 (0)