common: Don't set Implementation-Version to commit hash

This commit is contained in:
Alva Swanson 2023-08-04 13:02:10 +02:00
parent 71c70540fb
commit 9c177830c0
No known key found for this signature in database
GPG Key ID: 004760E77F753090

View File

@ -7,15 +7,6 @@ javafx {
modules = ['javafx.graphics']
}
ext.getHash = {
def p1 = 'git rev-parse HEAD'.execute()
p1.waitFor()
return p1.text
}
jar.manifest.attributes(
"Implementation-Version": getHash())
dependencies {
implementation enforcedPlatform(project(':platform'))
implementation project(':proto')