Publish update to libzontreck with fixed version number

This commit is contained in:
Aria 2023-03-06 01:55:47 -07:00
parent ede19b0572
commit 1378a6fb21
2 changed files with 6 additions and 6 deletions

View file

@ -151,9 +151,9 @@ jar {
attributes([
"Specification-Title" : project.name,
"Specification-Vendor" : "zontreck",
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : version,
"Specification-Version": "${myversion}",
"Implementation-Title": project.name,
"Implementation-Version": "${myversion}",
"Implementation-Vendor" : "zontreck",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
@ -174,9 +174,9 @@ task devJar(type: Jar) {
attributes([
"Specification-Title": project.name,
"Specification-Vendor": "zontreck",
"Specification-Version": "1",
"Specification-Version": "${myversion}",
"Implementation-Title": project.name,
"Implementation-Version": version,
"Implementation-Version": "${myversion}",
"Implementation-Vendor": "zontreck",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])