This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
generated from PurpurMC/Tentacles
-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.gradle.kts
52 lines (42 loc) · 1.52 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import java.util.Locale
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://repo.papermc.io/repository/maven-public/")
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
}
if (!file(".git").exists()) {
val errorText = """
=====================[ ERROR ]=====================
The IceCream project directory is not a properly cloned Git repository.
In order to build IceCream from source you must clone
the repository using Git, not download a code zip from GitHub.
See https://github.com/PurpurMC/Purpur/blob/HEAD/CONTRIBUTING.md
for further information on building and modifying Purpur.
===================================================
""".trimIndent()
error(errorText)
}
rootProject.name = "icecream"
for (name in listOf("IceCream-API", "IceCream-Server", "paper-api-generator")) {
val projName = name.lowercase(Locale.ENGLISH)
include(projName)
findProject(":$projName")!!.projectDir = file(name)
}
fun optionalInclude(name: String, op: (ProjectDescriptor.() -> Unit)? = null) {
val settingsFile = file("$name.settings.gradle.kts")
if (settingsFile.exists()) {
apply(from = settingsFile)
findProject(":$name")?.let { op?.invoke(it) }
} else {
settingsFile.writeText(
"""
// Uncomment to enable the '$name' project
// include(":$name")
""".trimIndent()
)
}
}