Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/CompilerOptions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fun KotlinCommonCompilerOptions.configure(

when (this) {
is KotlinJvmCompilerOptions -> {
freeCompilerArgs.add("-Xjvm-default=all")
freeCompilerArgs.add("-jvm-default=no-compatibility")
}

is KotlinNativeCompilerOptions -> {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libraries.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ javaPoet = "1.13.0"
jetbrains-annotations = "26.0.2-1"
junit = "4.13.2"
#noinspection GradleDependency,NewerVersionAvailable compatibility with native consumers
kotlin-plugin = "2.2.20"
kotlin-plugin = "2.3.0-dev-9489"
kotlinx-coroutines = "1.10.2"
kotlinx-datetime = "0.7.1"
#noinspection NewerVersionAvailable requires KGP 2.2
Expand Down
4 changes: 2 additions & 2 deletions gradle/repositories.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
listOf(pluginManagement.repositories, dependencyResolutionManagement.repositories).forEach {
it.apply {
// Uncomment this one to use the Kotlin "dev" repository
// maven("https://redirector.kotlinlang.org/maven/dev/")
maven("https://redirector.kotlinlang.org/maven/dev/")
// Uncomment this one to use the Sonatype OSSRH snapshots repository
// maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
// Uncomment this one to use the GradleUp repository
// maven("https://storage.googleapis.com/gradleup/m2")

Expand Down
2 changes: 1 addition & 1 deletion gradle/test.settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencyResolutionManagement {
pluginManagement {
listOf(repositories, dependencyResolutionManagement.repositories).forEach {
// Uncomment this one to use the Kotlin "dev" repository
// it.maven("https://redirector.kotlinlang.org/maven/dev/")
it.maven("https://redirector.kotlinlang.org/maven/dev/")
it.mavenCentral()
it.google()
it.maven("../../../../build/localMaven")
Expand Down
Loading
Loading