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