Files
Chom-Bev-e-Brezhoneg/settings.gradle.kts

57 lines
1.3 KiB
Kotlin

rootProject.name = "ChomBev"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("build-logic")
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(":androidApp")
include(":desktopApp")
include(":webApp")
include(":shared")
// Core modules
include(":core:audioplayer")
include(":core:coroutines")
include(":core:logging")
include(":core:model")
// Data modules
include(":data:playback")
include(":data:preferences")
include(":data:records")
include(":data:resources")
include(":data:subtitle")
// Feature modules
include(":feature:records")
include(":feature:webview")