ab-download-manager/settings.gradle.kts

38 lines
892 B
Plaintext
Raw Normal View History

2024-07-07 07:44:25 +03:30
pluginManagement {
}
plugins{
// id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
rootProject.name = "ABDownloadManager"
include("desktop:app")
include("desktop:custom-window-frame")
include("desktop:shared")
include("desktop:tray")
include("downloader:core")
include("downloader:monitor")
include("integration:server")
include("shared:utils")
include("shared:app-utils")
include("shared:compose-utils")
2024-10-23 08:01:30 +03:30
include("shared:resources")
include("shared:resources:contracts")
2024-07-07 07:44:25 +03:30
include("shared:config")
include("shared:updater")
include("shared:auto-start")
include("shared:nanohttp4k")
includeBuild("./compositeBuilds/shared"){
name="build-shared"
}
includeBuild("./compositeBuilds/plugins")