pluginManagement { repositories { gradlePluginPortal() mavenCentral() maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") } maven { url = uri("https://packages.jetbrains.team/maven/p/ui/dev") } } resolutionStrategy { eachPlugin { if (requested.id.id == "org.jetbrains.compose") { println("[build] compose core version: ${extra["COMPOSE_CORE_VERSION"]}") useModule("org.jetbrains.compose:org.jetbrains.compose.gradle.plugin:${extra["COMPOSE_CORE_VERSION"]}") } } } } fun module(name: String, path: String) { include(name) project(name).projectDir = file(path) } module(":web-core", "$rootDir/core") module(":web-widgets", "$rootDir/widgets") module(":web-integration-core", "$rootDir/integration-core") module(":web-integration-widgets", "$rootDir/integration-widgets")