geforkt von Mirrors/Paper
e519a51f95
This allows creating paperclip jars pre-patch (only the reobf'd jar for now).
24 Zeilen
628 B
Plaintext
24 Zeilen
628 B
Plaintext
import java.util.Locale
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven("https://papermc.io/repo/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")
|
|
}
|