This commit is contained in:
AlphaKR93
2024-05-14 19:03:56 +09:00
parent 34fef470e5
commit 6e591f2d3f
2 changed files with 0 additions and 9 deletions

View File

@@ -148,14 +148,6 @@ tasks {
)
}
register("reApplyServerPatches") {
doFirst {
projectDir.resolve("$projectName-Server").deleteRecursively()
}
finalizedBy("applyServerPatches")
}
clean {
doLast {
listOf(

View File

@@ -26,7 +26,6 @@ dependencyResolutionManagement {
rootProject.name = projectName.lowercase()
for (name in listOf("$projectName-API", "$projectName-Server")) {
if (!rootDir.resolve("$name/MIT.txt").isFile) continue
val projName = name.lowercase(Locale.ENGLISH)
include(projName)
findProject(":$projName")!!.projectDir = file(name)