git commit time Closure

This commit is contained in:
mcrcortex
2025-01-05 08:35:55 +10:00
parent 67347048b5
commit 7b9c31b770

View File

@@ -45,11 +45,13 @@ def gitCommitHash = { ->
def buildtime = {System.currentTimeSeconds()} def buildtime = {System.currentTimeSeconds()}
processResources { processResources {
inputs.properties("version": project.version, "commit": gitCommitHash, "buildtime": buildtime) def time = buildtime()
def hash = gitCommitHash()
inputs.properties("version": project.version, "commit": hash, "buildtime": time)
archivesBaseName = "voxy" archivesBaseName = "voxy"
filesMatching("fabric.mod.json") { filesMatching("fabric.mod.json") {
expand "commit": gitCommitHash, "version": project.version, "buildtime": buildtime expand "version": project.version, "commit": hash, "buildtime": time
} }
} }