mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
Otherwise DownloadAction might assume, that the destination is actually a file, when just one file is requested (which is true for some POM only compose modules)
14 lines
417 B
Kotlin
14 lines
417 B
Kotlin
pluginManagement {
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/internal")
|
|
maven("https://maven.pkg.jetbrains.space/public/p/space/maven")
|
|
}
|
|
dependencies {
|
|
classpath("org.jetbrains.compose.internal.build-helpers:publishing:0.1.5")
|
|
}
|
|
}
|
|
}
|
|
|
|
includeBuild("frameworks/support") |