diff --git a/fleet/compiler-plugins/expects/build.gradle.kts b/fleet/compiler-plugins/expects/build.gradle.kts index 10740fb02f9d..dd7779140858 100644 --- a/fleet/compiler-plugins/expects/build.gradle.kts +++ b/fleet/compiler-plugins/expects/build.gradle.kts @@ -18,7 +18,7 @@ val pluginVersion = run { } // the compiler plugin will be used together with this Kotlin compiler -val KOTLIN_VERSION = "2.3.10-RC" +val KOTLIN_VERSION = "2.3.20-RC2" // the compiler plugin will be built with these Kotlin LV/APIV val KOTLIN_LANGUAGE_VERSION = "2.3" @@ -29,6 +29,7 @@ version = pluginVersion repositories { mavenCentral() + maven("https://packages.jetbrains.team/maven/p/kt/dev/") if ("SNAPSHOT" in KOTLIN_VERSION || "dev" in KOTLIN_VERSION) { maven("https://packages.jetbrains.team/maven/p/kt/bootstrap") mavenLocal() diff --git a/fleet/compiler-plugins/expects/settings.gradle.kts b/fleet/compiler-plugins/expects/settings.gradle.kts index 56b0ebb731fb..3aa5f5067ede 100644 --- a/fleet/compiler-plugins/expects/settings.gradle.kts +++ b/fleet/compiler-plugins/expects/settings.gradle.kts @@ -2,7 +2,7 @@ rootProject.name = "expects-compiler-plugin" pluginManagement { // the compiler plugin will be built by this Kotlin compiler - val KOTLIN_VERSION = "2.3.10-RC" + val KOTLIN_VERSION = "2.3.20-RC2" plugins { kotlin("jvm") version KOTLIN_VERSION @@ -20,6 +20,7 @@ pluginManagement { } repositories { gradlePluginPortal() + maven("https://packages.jetbrains.team/maven/p/kt/dev/") if ("SNAPSHOT" in KOTLIN_VERSION || "dev" in KOTLIN_VERSION) { maven("https://packages.jetbrains.team/maven/p/kt/bootstrap") mavenLocal() diff --git a/fleet/compiler-plugins/expects/src/main/kotlin/fleet/multiplatform/expects/gradle/ExpectsGradlePlugin.kt b/fleet/compiler-plugins/expects/src/main/kotlin/fleet/multiplatform/expects/gradle/ExpectsGradlePlugin.kt index fd9882ce1d52..f424d4a9015a 100644 --- a/fleet/compiler-plugins/expects/src/main/kotlin/fleet/multiplatform/expects/gradle/ExpectsGradlePlugin.kt +++ b/fleet/compiler-plugins/expects/src/main/kotlin/fleet/multiplatform/expects/gradle/ExpectsGradlePlugin.kt @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerPluginSupportPlugin import org.jetbrains.kotlin.gradle.plugin.SubpluginArtifact import org.jetbrains.kotlin.gradle.plugin.SubpluginOption -private const val VERSION = "2.3.10-RC-0.1" +private const val VERSION = "2.3.20-RC2-0.1" class ExpectsGradlePlugin : KotlinCompilerPluginSupportPlugin { override fun isApplicable(kotlinCompilation: KotlinCompilation<*>): Boolean = true @@ -25,4 +25,4 @@ class ExpectsGradlePlugin : KotlinCompilerPluginSupportPlugin { val project = kotlinCompilation.target.project return project.provider { listOf() } } -} \ No newline at end of file +} diff --git a/fleet/compiler-plugins/noria/build.gradle.kts b/fleet/compiler-plugins/noria/build.gradle.kts index 67b4487721ab..114db41da704 100644 --- a/fleet/compiler-plugins/noria/build.gradle.kts +++ b/fleet/compiler-plugins/noria/build.gradle.kts @@ -18,7 +18,7 @@ val pluginVersion = run { } // the compiler plugin will be used together with this Kotlin compiler -val KOTLIN_VERSION = "2.3.10-RC" +val KOTLIN_VERSION = "2.3.20-RC2" // the compiler plugin will be built with these Kotlin LV/APIV val KOTLIN_LANGUAGE_VERSION = "2.3" @@ -30,6 +30,7 @@ version = pluginVersion repositories { mavenCentral() maven("https://cache-redirector.jetbrains.com/intellij-dependencies") + maven("https://packages.jetbrains.team/maven/p/kt/dev/") if ("SNAPSHOT" in KOTLIN_VERSION || "dev" in KOTLIN_VERSION) { maven("https://packages.jetbrains.team/maven/p/kt/bootstrap") mavenLocal() @@ -88,4 +89,4 @@ publishing { } fun prop(name: String): String? = - extra.properties[name] as? String \ No newline at end of file + extra.properties[name] as? String diff --git a/fleet/compiler-plugins/noria/settings.gradle.kts b/fleet/compiler-plugins/noria/settings.gradle.kts index 9985d993fe3a..568260678d41 100644 --- a/fleet/compiler-plugins/noria/settings.gradle.kts +++ b/fleet/compiler-plugins/noria/settings.gradle.kts @@ -2,7 +2,7 @@ rootProject.name = "noria-compiler-plugin" pluginManagement { // the compiler plugin will be built by this Kotlin compiler - val KOTLIN_VERSION = "2.3.10-RC" + val KOTLIN_VERSION = "2.3.20-RC2" plugins { kotlin("jvm") version KOTLIN_VERSION @@ -20,6 +20,7 @@ pluginManagement { } repositories { gradlePluginPortal() + maven("https://packages.jetbrains.team/maven/p/kt/dev/") if ("SNAPSHOT" in KOTLIN_VERSION || "dev" in KOTLIN_VERSION) { maven("https://packages.jetbrains.team/maven/p/kt/bootstrap") mavenLocal() diff --git a/fleet/compiler-plugins/noria/src/main/kotlin/noria/plugin/gradle/NoriaGradlePlugin.kt b/fleet/compiler-plugins/noria/src/main/kotlin/noria/plugin/gradle/NoriaGradlePlugin.kt index 610038ecdce7..dc8b2605643b 100644 --- a/fleet/compiler-plugins/noria/src/main/kotlin/noria/plugin/gradle/NoriaGradlePlugin.kt +++ b/fleet/compiler-plugins/noria/src/main/kotlin/noria/plugin/gradle/NoriaGradlePlugin.kt @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerPluginSupportPlugin import org.jetbrains.kotlin.gradle.plugin.SubpluginArtifact import org.jetbrains.kotlin.gradle.plugin.SubpluginOption -private const val VERSION = "2.3.10-RC-0.1" +private const val VERSION = "2.3.20-RC2-0.1" class NoriaGradlePlugin : KotlinCompilerPluginSupportPlugin { override fun isApplicable(kotlinCompilation: KotlinCompilation<*>): Boolean = true @@ -22,4 +22,4 @@ class NoriaGradlePlugin : KotlinCompilerPluginSupportPlugin { override fun applyToCompilation(kotlinCompilation: KotlinCompilation<*>): Provider> { return kotlinCompilation.target.project.provider { emptyList() } } -} \ No newline at end of file +} diff --git a/fleet/compiler-plugins/rhizomedb/build.gradle.kts b/fleet/compiler-plugins/rhizomedb/build.gradle.kts index 930b7cea80c7..57299d5d9978 100644 --- a/fleet/compiler-plugins/rhizomedb/build.gradle.kts +++ b/fleet/compiler-plugins/rhizomedb/build.gradle.kts @@ -18,7 +18,7 @@ val pluginVersion = run { } // the compiler plugin will be used together with this Kotlin compiler -val KOTLIN_VERSION = "2.3.10-RC" +val KOTLIN_VERSION = "2.3.20-RC2" // the compiler plugin will be built with these Kotlin LV/APIV val KOTLIN_LANGUAGE_VERSION = "2.3" @@ -29,6 +29,7 @@ version = pluginVersion repositories { mavenCentral() + maven("https://packages.jetbrains.team/maven/p/kt/dev/") if ("SNAPSHOT" in KOTLIN_VERSION || "dev" in KOTLIN_VERSION) { maven("https://packages.jetbrains.team/maven/p/kt/bootstrap") mavenLocal() diff --git a/fleet/compiler-plugins/rhizomedb/settings.gradle.kts b/fleet/compiler-plugins/rhizomedb/settings.gradle.kts index 307a7095ebf6..9207523d4163 100644 --- a/fleet/compiler-plugins/rhizomedb/settings.gradle.kts +++ b/fleet/compiler-plugins/rhizomedb/settings.gradle.kts @@ -2,7 +2,7 @@ rootProject.name = "rhizomedb-compiler-plugin" pluginManagement { // the compiler plugin will be built by this Kotlin compiler - val KOTLIN_VERSION = "2.3.10-RC" + val KOTLIN_VERSION = "2.3.20-RC2" plugins { kotlin("jvm") version KOTLIN_VERSION @@ -20,6 +20,7 @@ pluginManagement { } repositories { gradlePluginPortal() + maven("https://packages.jetbrains.team/maven/p/kt/dev/") if ("SNAPSHOT" in KOTLIN_VERSION || "dev" in KOTLIN_VERSION) { maven("https://packages.jetbrains.team/maven/p/kt/bootstrap") mavenLocal() diff --git a/fleet/compiler-plugins/rhizomedb/src/main/kotlin/com/jetbrains/rhizomedb/plugin/gradle/RhizomeGradlePlugin.kt b/fleet/compiler-plugins/rhizomedb/src/main/kotlin/com/jetbrains/rhizomedb/plugin/gradle/RhizomeGradlePlugin.kt index 344a7cee0c13..c12bc467fa25 100644 --- a/fleet/compiler-plugins/rhizomedb/src/main/kotlin/com/jetbrains/rhizomedb/plugin/gradle/RhizomeGradlePlugin.kt +++ b/fleet/compiler-plugins/rhizomedb/src/main/kotlin/com/jetbrains/rhizomedb/plugin/gradle/RhizomeGradlePlugin.kt @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerPluginSupportPlugin import org.jetbrains.kotlin.gradle.plugin.SubpluginArtifact import org.jetbrains.kotlin.gradle.plugin.SubpluginOption -private const val VERSION = "2.3.10-RC-0.1" +private const val VERSION = "2.3.20-RC2-0.1" class RhizomeGradlePlugin : KotlinCompilerPluginSupportPlugin { override fun isApplicable(kotlinCompilation: KotlinCompilation<*>): Boolean = true diff --git a/fleet/compiler-plugins/rpc/build.gradle.kts b/fleet/compiler-plugins/rpc/build.gradle.kts index 71cb8a3e7de2..6250230e8626 100644 --- a/fleet/compiler-plugins/rpc/build.gradle.kts +++ b/fleet/compiler-plugins/rpc/build.gradle.kts @@ -18,7 +18,7 @@ val pluginVersion = run { } // the compiler plugin will be used together with this Kotlin compiler -val KOTLIN_VERSION = "2.3.10-RC" +val KOTLIN_VERSION = "2.3.20-RC2" // the compiler plugin will be built with these Kotlin LV/APIV val KOTLIN_LANGUAGE_VERSION = "2.3" @@ -29,6 +29,7 @@ version = pluginVersion repositories { mavenCentral() + maven("https://packages.jetbrains.team/maven/p/kt/dev/") if ("SNAPSHOT" in KOTLIN_VERSION || "dev" in KOTLIN_VERSION) { maven("https://packages.jetbrains.team/maven/p/kt/bootstrap") mavenLocal() diff --git a/fleet/compiler-plugins/rpc/settings.gradle.kts b/fleet/compiler-plugins/rpc/settings.gradle.kts index 8df556f07bc4..c12b40e8748c 100644 --- a/fleet/compiler-plugins/rpc/settings.gradle.kts +++ b/fleet/compiler-plugins/rpc/settings.gradle.kts @@ -2,7 +2,7 @@ rootProject.name = "rpc-compiler-plugin" pluginManagement { // the compiler plugin will be built by this Kotlin compiler - val KOTLIN_VERSION = "2.3.10-RC" + val KOTLIN_VERSION = "2.3.20-RC2" plugins { kotlin("jvm") version KOTLIN_VERSION @@ -20,6 +20,7 @@ pluginManagement { } repositories { gradlePluginPortal() + maven("https://packages.jetbrains.team/maven/p/kt/dev/") if ("SNAPSHOT" in KOTLIN_VERSION || "dev" in KOTLIN_VERSION) { maven("https://packages.jetbrains.team/maven/p/kt/bootstrap") mavenLocal() diff --git a/fleet/compiler-plugins/rpc/src/main/kotlin/com/jetbrains/fleet/rpc/plugin/gradle/RpcGradlePlugin.kt b/fleet/compiler-plugins/rpc/src/main/kotlin/com/jetbrains/fleet/rpc/plugin/gradle/RpcGradlePlugin.kt index e8867af69792..5a5d6615a016 100644 --- a/fleet/compiler-plugins/rpc/src/main/kotlin/com/jetbrains/fleet/rpc/plugin/gradle/RpcGradlePlugin.kt +++ b/fleet/compiler-plugins/rpc/src/main/kotlin/com/jetbrains/fleet/rpc/plugin/gradle/RpcGradlePlugin.kt @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerPluginSupportPlugin import org.jetbrains.kotlin.gradle.plugin.SubpluginArtifact import org.jetbrains.kotlin.gradle.plugin.SubpluginOption -private const val VERSION = "2.3.10-RC-0.1" +private const val VERSION = "2.3.20-RC2-0.1" class RpcGradlePlugin : KotlinCompilerPluginSupportPlugin { override fun isApplicable(kotlinCompilation: KotlinCompilation<*>): Boolean = true @@ -22,4 +22,4 @@ class RpcGradlePlugin : KotlinCompilerPluginSupportPlugin { override fun applyToCompilation(kotlinCompilation: KotlinCompilation<*>): Provider> { return kotlinCompilation.target.project.provider { emptyList() } } -} \ No newline at end of file +}