2021-06-11 15:45:34 +08:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
2021-06-15 03:02:30 +08:00
|
|
|
maven("https://papermc.io/repo/repository/maven-public/")
|
2021-06-11 15:45:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "Paper"
|
|
|
|
|
2021-11-23 16:57:41 +08:00
|
|
|
include(
|
|
|
|
"Paper-API",
|
|
|
|
"Paper-Server",
|
2021-11-24 09:09:12 +08:00
|
|
|
"Paper-MojangAPI",
|
2021-11-23 16:57:41 +08:00
|
|
|
)
|
2021-07-09 18:04:33 +08: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")
|
|
|
|
}
|