2022-07-16 21:34:19 +03:00
|
|
|
rootProject.name = "maps-kt"
|
|
|
|
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
2022-09-06 13:32:13 +03:00
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
2022-07-16 21:34:19 +03:00
|
|
|
|
2022-07-09 17:47:42 +03:00
|
|
|
pluginManagement {
|
2022-09-06 13:32:13 +03:00
|
|
|
|
|
|
|
val toolsVersion: String by extra
|
|
|
|
|
2022-07-09 17:47:42 +03:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
gradlePluginPortal()
|
|
|
|
mavenCentral()
|
2022-09-06 13:32:13 +03:00
|
|
|
maven("https://repo.kotlin.link")
|
2022-07-09 17:47:42 +03:00
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
2022-07-16 21:34:19 +03:00
|
|
|
id("com.android.application").version(extra["agp.version"] as String)
|
|
|
|
id("com.android.library").version(extra["agp.version"] as String)
|
2022-07-09 17:47:42 +03:00
|
|
|
id("org.jetbrains.compose").version(extra["compose.version"] as String)
|
2022-09-06 13:32:13 +03:00
|
|
|
id("space.kscience.gradle.project") version toolsVersion
|
|
|
|
id("space.kscience.gradle.mpp") version toolsVersion
|
|
|
|
id("space.kscience.gradle.jvm") version toolsVersion
|
|
|
|
id("space.kscience.gradle.js") version toolsVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
val toolsVersion: String by extra
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
|
|
|
|
versionCatalogs {
|
|
|
|
create("spclibs") {
|
|
|
|
from("space.kscience:version-catalog:$toolsVersion")
|
|
|
|
}
|
2022-07-09 17:47:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-16 21:34:19 +03:00
|
|
|
|
|
|
|
include(
|
2022-07-23 11:30:33 +03:00
|
|
|
":maps-kt-core",
|
2022-12-26 23:22:21 +03:00
|
|
|
":maps-kt-geojson",
|
2022-12-17 23:12:00 +03:00
|
|
|
":maps-kt-features",
|
2022-07-16 21:34:19 +03:00
|
|
|
":maps-kt-compose",
|
2022-07-23 10:27:58 +03:00
|
|
|
":demo:maps",
|
2022-07-23 11:24:37 +03:00
|
|
|
":maps-kt-scheme",
|
2022-07-23 10:27:58 +03:00
|
|
|
":demo:scheme"
|
2022-07-16 21:34:19 +03:00
|
|
|
)
|
2022-07-09 17:47:42 +03:00
|
|
|
|