mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 02:10:30 +01:00
18 lines
456 B
Plaintext
18 lines
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")
|
|
}
|