-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
36 lines (28 loc) · 1.05 KB
/
settings.gradle.kts
File metadata and controls
36 lines (28 loc) · 1.05 KB
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
pluginManagement {
repositories {
gradlePluginPortal()
mavenLocal()
maven("https://repo.papermc.io/repository/maven-public/")
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
}
if (!file(".git").exists()) {
val errorText = """
=====================[ ERROR ]=====================
The Pulse project directory is not a properly cloned Git repository.
In order to build Pulse from source you must clone
the Pulse repository using Git, not download a code
zip from GitHub.
Built Pulse jars are available for download at
https://pulsemc.dev/releases or https://pulsemc.dev/devbuilds
See https://github.com/Pulse-MC/Pulse/blob/main/CONTRIBUTING.md
for further information on building and modifying Pulse.
===================================================
""".trimIndent()
error(errorText)
}
rootProject.name = "pulse"
include("pulse-api")
include("pulse-server")