mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-09 22:32:04 +01:00
30 lines
609 B
Kotlin
30 lines
609 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
google()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
}
|
|
}
|
|
rootProject.name = "Suwayomi-JUI"
|
|
|
|
include("core")
|
|
include("i18n")
|
|
include("data")
|
|
include("domain")
|
|
include("ui-core")
|
|
include("presentation")
|
|
include("android")
|
|
include("desktop")
|
|
include("ios")
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|