aboutsummaryrefslogtreecommitdiffhomepage
path: root/settings.gradle.kts
blob: c65042b13350fe02800eef80753ebcbe5c0762fc (plain)
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
53
54
55
56
57
58
import java.util.Locale

pluginManagement {
    repositories {
        gradlePluginPortal()
        mavenLocal()
        maven("https://repo.papermc.io/repository/maven-public/")
    }
}

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
         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)
}

rootProject.name = "paper"

for (name in listOf("Paper-API", "Paper-Server", "Paper-MojangAPI")) {
    val projName = name.lowercase(Locale.ENGLISH)
    include(projName)
    findProject(":$projName")!!.projectDir = file(name)
}

mapOf("test-plugin.settings.gradle.kts" to """
        // Uncomment to enable the test plugin module
        // include(":test-plugin")
    """.trimIndent(),
    "paper-api-generator.settings.gradle.kts" to """
        // Uncomment to enable the api generator module
        // include(":paper-api-generator")
    """.trimIndent()
).forEach { (fileName, text) ->
    val settingsFile = file(fileName)
    if (settingsFile.exists()) {
        apply(from = settingsFile)
    } else {
        settingsFile.writeText(text + "\n")
    }
}