19 lines
404 B
Plaintext
19 lines
404 B
Plaintext
|
|
rootProject.name = "full-stack-demo"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
}
|
|
|
|
plugins {
|
|
kotlin("multiplatform").version(extra["kotlin.version"] as String)
|
|
id("org.jetbrains.compose").version(extra["compose.version"] as String)
|
|
}
|
|
}
|
|
|
|
|