diff --git a/api-editor/build.gradle.kts b/api-editor/build.gradle.kts index c386273fa..c0e85aca3 100644 --- a/api-editor/build.gradle.kts +++ b/api-editor/build.gradle.kts @@ -9,14 +9,11 @@ plugins { kotlin("plugin.serialization") version "1.7.20" apply false id("com.github.johnrengelman.shadow") version "7.1.2" apply false id("com.github.node-gradle.node") version "3.5.0" apply false - id("org.jetbrains.compose") version "1.2.0-rc02-dev816" apply false + id("org.jetbrains.compose") version "1.2.0" apply false } repositories { mavenCentral() - // Can be removed once compose-jb is out of alpha - maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") - google() } idea { @@ -45,19 +42,5 @@ subprojects { repositories { mavenCentral() - // Can be removed once compose-jb is out of alpha - maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") - google() - } -} - -// Can be removed once compose-jb is out of alpha -allprojects { - configurations.all { - resolutionStrategy.dependencySubstitution { - substitute(module("org.jetbrains.compose.compiler:compiler")).apply { - using(module("androidx.compose.compiler:compiler:1.3.2")) - } - } } } diff --git a/api-editor/settings.gradle.kts b/api-editor/settings.gradle.kts index 5a23a469e..53a371b01 100644 --- a/api-editor/settings.gradle.kts +++ b/api-editor/settings.gradle.kts @@ -1,13 +1,5 @@ rootProject.name = "com.larsreimann.python_api_editor" -pluginManagement { - repositories { - gradlePluginPortal() - // Can be removed once compose-jb is out of alpha - maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") - } -} - include( "backend", "desktop",