forked from PurpurMC/Purpur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
36 lines (28 loc) · 1.08 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
import java.util.Locale
if (!file(".git").exists()) {
val errorText = """
=====================[ ERROR ]=====================
The Purpur project directory is not a properly cloned Git repository.
In order to build Purpur from source you must clone
the Purpur repository using Git, not download a code
zip from GitHub.
Built Purpur jars are available for download at
https://purpurmc.org/downloads
See https://github.com/PurpurMC/Purpur/blob/HEAD/CONTRIBUTING.md
for further information on building and modifying Purpur.
===================================================
""".trimIndent()
error(errorText)
}
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://repo.papermc.io/repository/maven-public/")
}
}
rootProject.name = "purpur"
for (name in listOf("Purpur-API", "Purpur-Server")) {
val projName = name.toLowerCase(Locale.ENGLISH)
include(projName)
findProject(":$projName")!!.projectDir = file(name)
}