Paper/settings.gradle.kts

65 lines
1.8 KiB
Plaintext
Raw Normal View History

import java.util.Locale
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://repo.papermc.io/repository/maven-public/")
}
}
2023-12-06 21:45:12 +01:00
// todo 1.20.3
if (file("adventure-temp").exists()) {
includeBuild("adventure-temp")
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
}
if (!file(".git").exists()) {
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
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"
for (name in listOf("Paper-API", "Paper-Server", "Paper-MojangAPI")) {
2023-08-21 11:16:46 +02:00
val projName = name.lowercase(Locale.ENGLISH)
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")
if (settingsFile.exists()) {
apply(from = settingsFile)
2023-12-06 23:57:51 +01:00
findProject(":$name")?.let { op?.invoke(it) }
} else {
2023-12-06 23:57:51 +01:00
settingsFile.writeText(
"""
// Uncomment to enable the '$name' project
// include(":$name")
""".trimIndent()
)
}
2021-07-09 12:04:33 +02:00
}