mirror of
https://github.com/openflocon/Flocon.git
synced 2026-04-30 03:29:31 +00:00
* feature: Local * feature: Local * feature: Move analytics * feature: Network --------- Co-authored-by: TEYSSANDIER Raphael <rteyssandier@sephora.fr>
40 lines
966 B
Kotlin
40 lines
966 B
Kotlin
rootProject.name = "FloconDesktop"
|
|
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()
|
|
}
|
|
}
|
|
|
|
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")
|