3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-16 13:01:24 +02:00
FastAsyncWorldEdit/build.gradle.kts

29 Zeilen
768 B
Plaintext

2019-07-11 01:33:21 +02:00
import org.ajoberstar.grgit.Grgit
2019-07-14 07:16:16 +02:00
logger.lifecycle("""
2019-07-11 01:33:21 +02:00
*******************************************
You are building WorldEdit!
If you encounter trouble:
1) Read COMPILING.md if you haven't yet
2) Try running 'build' in a separate Gradle run
3) Use gradlew and not gradle
4) If you still need help, ask on Discord! https://discord.gg/enginehub
Output files will be in [subproject]/build/libs
*******************************************
""")
applyRootArtifactoryConfig()
if (!project.hasProperty("gitCommitHash")) {
apply(plugin = "org.ajoberstar.grgit")
ext["gitCommitHash"] = try {
2019-07-14 07:16:16 +02:00
(ext["grgit"] as Grgit?)?.head()?.abbreviatedId
2019-07-11 01:33:21 +02:00
} catch (e: Exception) {
2019-07-14 07:16:16 +02:00
logger.warn("Error getting commit hash", e)
2019-07-11 01:33:21 +02:00
"no_git_id"
}
}