mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-15 15:16:06 +01:00
26 lines
726 B
Plaintext
26 lines
726 B
Plaintext
|
import org.ajoberstar.grgit.Grgit
|
||
|
|
||
|
logger.lifecycle("""
|
||
|
*******************************************
|
||
|
You are building WorldGuard!
|
||
|
If you encounter trouble:
|
||
|
1) Try running 'build' in a separate Gradle run
|
||
|
2) Use gradlew and not gradle
|
||
|
3) 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 {
|
||
|
(ext["grgit"] as Grgit?)?.head()?.abbreviatedId
|
||
|
} catch (e: Exception) {
|
||
|
logger.warn("Error getting commit hash", e)
|
||
|
|
||
|
"no_git_id"
|
||
|
}
|
||
|
}
|