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

49 lines
1.1 KiB
Kotlin

rootProject.name = "Gwenedeg"
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(":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:resources")
include(":data:subtitle")