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