-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
55 lines (46 loc) · 1.6 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
53
54
55
import java.util.Locale
val projectName = "Volt" // Volt - Change this value
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://repo.papermc.io/repository/maven-public/")
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
}
// Volt start - Remove this
if (!file(".git").exists()) {
val errorText = """
=====================[ ERROR ]=====================
The Volt project directory is not a properly cloned Git repository.
In order to build Volt from source you must clone
the repository using Git, not download a code zip from GitHub.
See https://github.com/PaperMC/Paper/blob/master/CONTRIBUTING.md
for further information on building and modifying Volt.
===================================================
""".trimIndent()
error(errorText)
}
// Volt end - Remove this
if (file("libs").exists()) {
dependencyResolutionManagement {
versionCatalogs {
create("api") {
from(files("libs/api.versions.toml"))
}
create("server") {
from(files("libs/server.versions.toml"))
}
create("common") {
from(files("libs/common.versions.toml"))
}
}
}
}
rootProject.name = projectName.lowercase()
for (name in listOf("$projectName-API", "$projectName-Server", "$projectName-MojangAPI")) {
val projName = name.lowercase(Locale.ENGLISH)
include(projName)
findProject(":$projName")!!.projectDir = file(name)
}