mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
24 lines
628 B
Plaintext
24 lines
628 B
Plaintext
import java.util.Locale
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "paper"
|
|
|
|
for (name in listOf("Paper-API", "Paper-Server", "Paper-MojangAPI")) {
|
|
val projName = name.toLowerCase(Locale.ENGLISH)
|
|
include(projName)
|
|
findProject(":$projName")!!.projectDir = file(name)
|
|
}
|
|
|
|
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")
|
|
}
|