geforkt von Mirrors/Paper
18 Zeilen
456 B
Plaintext
18 Zeilen
456 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven("https://papermc.io/repo/repository/maven-public/")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Paper"
|
|
|
|
include("Paper-API", "Paper-Server", "Paper-MojangAPI")
|
|
|
|
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")
|
|
}
|