mirror of
https://github.com/openflocon/Flocon.git
synced 2026-05-02 03:30:09 +00:00
43 lines
1.1 KiB
Kotlin
43 lines
1.1 KiB
Kotlin
rootProject.name = "FloconDesktop"
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google {
|
|
mavenContent {
|
|
includeGroupAndSubgroups("androidx")
|
|
includeGroupAndSubgroups("com.android")
|
|
includeGroupAndSubgroups("com.google")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google {
|
|
mavenContent {
|
|
includeGroupAndSubgroups("androidx")
|
|
includeGroupAndSubgroups("com.android")
|
|
includeGroupAndSubgroups("com.google")
|
|
}
|
|
}
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
|
}
|
|
|
|
include(":composeApp")
|
|
include(":library:designsystem")
|
|
include(":data:remote")
|
|
include(":domain")
|
|
include(":data:core")
|
|
include(":data:local")
|
|
include(":navigation")
|