2024-12-11 20:59:17 +03:00
|
|
|
rootProject.name = "bee-app-frontend"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
google {
|
|
|
|
mavenContent {
|
|
|
|
includeGroupAndSubgroups("androidx")
|
|
|
|
includeGroupAndSubgroups("com.android")
|
|
|
|
includeGroupAndSubgroups("com.google")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositories {
|
|
|
|
google {
|
|
|
|
mavenContent {
|
|
|
|
includeGroupAndSubgroups("androidx")
|
|
|
|
includeGroupAndSubgroups("com.android")
|
|
|
|
includeGroupAndSubgroups("com.google")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mavenCentral()
|
2024-12-12 00:17:07 +03:00
|
|
|
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
|
2024-12-11 20:59:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
include(":composeApp")
|