2021-11-26 07:08:46 +01:00
|
|
|
import java.util.Locale
|
|
|
|
|
2023-02-27 23:30:04 +01:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
2024-03-29 18:43:36 +01:00
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
2023-02-27 23:30:04 +01:00
|
|
|
}
|
|
|
|
|
2022-12-09 17:33:00 +01:00
|
|
|
if (!file(".git").exists()) {
|
2022-11-20 19:26:20 +01:00
|
|
|
val errorText = """
|
|
|
|
|
|
|
|
=====================[ ERROR ]=====================
|
|
|
|
The Paper project directory is not a properly cloned Git repository.
|
|
|
|
|
|
|
|
In order to build Paper from source you must clone
|
|
|
|
the Paper repository using Git, not download a code
|
|
|
|
zip from GitHub.
|
|
|
|
|
|
|
|
Built Paper jars are available for download at
|
2023-04-05 02:06:59 +02:00
|
|
|
https://papermc.io/downloads/paper
|
2022-11-20 19:26:20 +01:00
|
|
|
|
|
|
|
See https://github.com/PaperMC/Paper/blob/master/CONTRIBUTING.md
|
|
|
|
for further information on building and modifying Paper.
|
|
|
|
===================================================
|
|
|
|
""".trimIndent()
|
|
|
|
error(errorText)
|
|
|
|
}
|
|
|
|
|
2021-11-26 10:15:38 +01:00
|
|
|
rootProject.name = "paper"
|
2021-06-11 09:45:34 +02:00
|
|
|
|
2021-11-26 07:08:46 +01:00
|
|
|
for (name in listOf("Paper-API", "Paper-Server", "Paper-MojangAPI")) {
|
2023-08-21 11:16:46 +02:00
|
|
|
val projName = name.lowercase(Locale.ENGLISH)
|
2021-11-26 07:08:46 +01:00
|
|
|
include(projName)
|
|
|
|
findProject(":$projName")!!.projectDir = file(name)
|
|
|
|
}
|
2021-07-09 12:04:33 +02:00
|
|
|
|
2023-12-06 23:57:51 +01:00
|
|
|
optionalInclude("test-plugin")
|
|
|
|
optionalInclude("paper-api-generator")
|
|
|
|
|
|
|
|
fun optionalInclude(name: String, op: (ProjectDescriptor.() -> Unit)? = null) {
|
|
|
|
val settingsFile = file("$name.settings.gradle.kts")
|
2023-11-23 05:56:28 +01:00
|
|
|
if (settingsFile.exists()) {
|
|
|
|
apply(from = settingsFile)
|
2023-12-06 23:57:51 +01:00
|
|
|
findProject(":$name")?.let { op?.invoke(it) }
|
2023-11-23 05:56:28 +01:00
|
|
|
} else {
|
2023-12-06 23:57:51 +01:00
|
|
|
settingsFile.writeText(
|
|
|
|
"""
|
|
|
|
// Uncomment to enable the '$name' project
|
|
|
|
// include(":$name")
|
|
|
|
|
|
|
|
""".trimIndent()
|
|
|
|
)
|
2023-11-23 05:56:28 +01:00
|
|
|
}
|
2021-07-09 12:04:33 +02:00
|
|
|
}
|