18 lines
515 B
Plaintext
18 lines
515 B
Plaintext
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
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)
|
|
}
|
|
}
|
|
|
|
rootProject.name = "maps-kt"
|
|
|