Update settings.gradle.kts

This commit is contained in:
Tofik ♡ 2021-06-14 21:21:32 +02:00 committed by GitHub
parent 04e91063d5
commit 6041e856ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 15 deletions

View File

@ -13,18 +13,3 @@ pluginManagement {
mavenCentral()
}
}
setupSubproject("$forkNameLowercase-api") {
projectDir = File("$forkName-API")
buildFileName = "../subprojects/api.gradle.kts"
}
setupSubproject("$forkNameLowercase-server") {
projectDir = File("$forkName-Server")
buildFileName = "../subprojects/server.gradle.kts"
}
setupSubproject("Yatoclip") { }
inline fun setupSubproject(name: String, block: ProjectDescriptor.() -> Unit) {
include(name)
project(":$name").apply(block)
}