Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.
Merged
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
19 changes: 1 addition & 18 deletions api-editor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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"))
}
}
}
}
8 changes: 0 additions & 8 deletions api-editor/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -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",
Expand Down