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-06-14 03:06:38 +02:00
|
|
|
include("Paper-API", "Paper-Server", "Paper-MojangAPI")
|
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")
|
|
|
|
}
|