Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-14 20:10:05 +01:00
22 Zeilen
471 B
Plaintext
22 Zeilen
471 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")
|
|
}
|