2022-07-09 17:47:42 +03:00
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-16 19:22:22 +03:00
|
|
|
rootProject.name = "maps-kt"
|
2022-07-09 17:47:42 +03:00
|
|
|
|