Skip to content

Commit

Permalink
Fix version being specified wrongly in manifest
Browse files Browse the repository at this point in the history
Signed-off-by: TheSilkMiner <thesilkminer@outlook.com>
  • Loading branch information
TheSilkMiner committed Jul 21, 2022
1 parent 901839a commit 3c1a5e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ class JavaConventionsPlugin implements Plugin<Project> {
attributes([
'Specification-Title' : ext['mod.name'],
'Specification-Vendor' : ext['mod.author'],
'Specification-Version' : archiveVersion.toString(),
'Specification-Version' : archiveVersion.get(),
'Implementation-Title' : project.name,
'Implementation-Version' : archiveVersion.toString(),
'Implementation-Version' : archiveVersion.get(),
'Implementation-Vendor' : ext['mod.author'],
'Implementation-Timestamp' : new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ").format(new Date()),
'Timestamp' : System.currentTimeMillis(),
Expand Down

0 comments on commit 3c1a5e7

Please sign in to comment.