2021-11-26 07:08:46 +01:00
|
|
|
import java.util.Locale
|
|
|
|
|
2021-06-11 09:45:34 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
2022-05-20 17:12:30 +02:00
|
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
2021-06-11 09:45:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-26 10:15:38 +01:00
|
|
|
rootProject.name = "paper"
|
2021-06-11 09:45:34 +02:00
|
|
|
|
2021-11-26 07:08:46 +01:00
|
|
|
for (name in listOf("Paper-API", "Paper-Server", "Paper-MojangAPI")) {
|
|
|
|
val projName = name.toLowerCase(Locale.ENGLISH)
|
|
|
|
include(projName)
|
|
|
|
findProject(":$projName")!!.projectDir = file(name)
|
|
|
|
}
|
2021-07-09 12:04:33 +02:00
|
|
|
|
|
|
|
val testPlugin = file("test-plugin.settings.gradle.kts")
|
|
|
|
if (testPlugin.exists()) {
|
|
|
|
apply(from = testPlugin)
|
|
|
|
} else {
|
|
|
|
testPlugin.writeText("// Uncomment to enable the test plugin module\n//include(\":test-plugin\")\n")
|
|
|
|
}
|