Flocon/FloconDesktop/settings.gradle.kts
Raphael Teyssandier 466931e812
Feature/domain (#87)
* feature: Local

* feature: Local

* feature: Move analytics

* feature: Network

---------

Co-authored-by: TEYSSANDIER Raphael <rteyssandier@sephora.fr>
2025-08-11 21:21:11 +02:00

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")