9
0
mirror of https://github.com/Dreeam-qwq/Gale.git synced 2025-12-29 19:49:09 +00:00
Files
Gale/settings.gradle.kts
Martijn Muijsers 502f9e7cc5 Update Gradle
2023-03-21 20:20:16 +01:00

40 lines
1.2 KiB
Plaintext

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 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
See https://github.com/PaperMC/Paper/blob/master/CONTRIBUTING.md
for further information on building and modifying Paper.
===================================================
""".trimIndent()
error(errorText)
}
rootProject.name = "gale" // Gale - build changes
for (name in listOf("Gale-API", "Gale-Server")) { // Gale - build changes
val projName = name.toLowerCase(Locale.ENGLISH)
include(projName)
findProject(":$projName")!!.projectDir = file(name)
}