mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
19 lines
516 B
Kotlin
Executable File
19 lines
516 B
Kotlin
Executable File
plugins {
|
|
// this is necessary to avoid the plugins to be loaded multiple times
|
|
// in each subproject's classloader
|
|
kotlin("jvm") apply false
|
|
kotlin("multiplatform") apply false
|
|
kotlin("android") apply false
|
|
id("com.android.application") apply false
|
|
id("com.android.library") apply false
|
|
id("org.jetbrains.compose") apply false
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
}
|
|
}
|