mirror of
https://github.com/Crazy-Crew/CrazyAuctions.git
synced 2024-11-10 10:10:22 +01:00
68 lines
1.4 KiB
Plaintext
68 lines
1.4 KiB
Plaintext
@file:Suppress("UnstableApiUsage")
|
|
|
|
dependencyResolutionManagement {
|
|
includeBuild("build-src")
|
|
|
|
versionCatalogs {
|
|
create("settings") {
|
|
from(files("gradle/settings.versions.toml"))
|
|
}
|
|
}
|
|
|
|
repositories.gradlePluginPortal()
|
|
}
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
val lowerCase = rootProject.name.lowercase()
|
|
|
|
include("api")
|
|
project(":api").name = "$lowerCase-api"
|
|
|
|
listOf("platforms").forEach(::includeProject)
|
|
|
|
listOf("paper").forEach(::includePlatform)
|
|
|
|
fun includeProject(name: String) {
|
|
include(name) {
|
|
this.name = "$lowerCase-$name"
|
|
}
|
|
}
|
|
|
|
fun includeModule(name: String) {
|
|
include(name) {
|
|
this.name = "$lowerCase-module-$name"
|
|
this.projectDir = file("modules/$name")
|
|
}
|
|
}
|
|
|
|
fun includePlatform(name: String) {
|
|
include(name) {
|
|
this.name = "$lowerCase-$name"
|
|
this.projectDir = file("platforms/$name")
|
|
}
|
|
}
|
|
|
|
fun includePlatformModule(name: String, platform: String) {
|
|
include(name) {
|
|
this.name = "$lowerCase-module-$platform-$name"
|
|
this.projectDir = file("modules/$platform/$name")
|
|
}
|
|
}
|
|
|
|
fun includeDiscordType(name: String) {
|
|
include(name) {
|
|
this.name = "$lowerCase-$name"
|
|
this.projectDir = file("platforms/discord/$name")
|
|
}
|
|
}
|
|
|
|
fun include(name: String, block: ProjectDescriptor.() -> Unit) {
|
|
include(name)
|
|
project(":$name").apply(block)
|
|
} |