mirror of
https://github.com/null2264/yokai.git
synced 2025-06-20 18:24:42 +00:00
42 lines
1 KiB
Kotlin
42 lines
1 KiB
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
create("androidx") {
|
|
from(files("gradle/androidx.versions.toml"))
|
|
}
|
|
create("compose") {
|
|
from(files("gradle/compose.versions.toml"))
|
|
}
|
|
create("kotlinx") {
|
|
from(files("gradle/kotlinx.versions.toml"))
|
|
}
|
|
}
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven("https://jitpack.io")
|
|
maven("https://plugins.gradle.org/m2/")
|
|
maven("https://s01.oss.sonatype.org/content/repositories/releases/")
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
rootProject.name = "Yokai"
|
|
include(":app")
|
|
include(":core:archive")
|
|
include(":core:main")
|
|
include(":data")
|
|
include(":domain")
|
|
include(":i18n")
|
|
include(":presentation:core")
|
|
//include(":presentation:widget")
|
|
include(":source:api")
|