45 lines
984 B
Kotlin
45 lines
984 B
Kotlin
pluginManagement {
|
|
includeBuild("gradle/build-logic")
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven(url = "https://www.jitpack.io")
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
create("mihonx") {
|
|
from(files("gradle/mihon.versions.toml"))
|
|
}
|
|
}
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven(url = "https://www.jitpack.io")
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
rootProject.name = "Mihon"
|
|
include(":app")
|
|
include(":core-metadata")
|
|
include(":core:archive")
|
|
include(":core:common")
|
|
include(":data")
|
|
include(":domain")
|
|
include(":i18n")
|
|
include(":macrobenchmark")
|
|
include(":presentation-core")
|
|
include(":presentation-widget")
|
|
include(":source-api")
|
|
include(":source-local")
|
|
include(":telemetry")
|