Files
YAEP/settings.gradle.kts

37 lines
841 B
Kotlin
Raw Permalink Normal View History

2025-07-24 22:04:23 +02:00
@file:Suppress("UnstableApiUsage")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2024-06-11 11:04:02 +02:00
rootProject.name = "YAEP"
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()
}
}
include(":domain")
include(":commonUI")
include(":desktop")
include(":android")