diff options
author | Anthony Hilyard <anthony.hilyard@gmail.com> | 2023-01-14 16:03:02 -0800 |
---|---|---|
committer | Anthony Hilyard <anthony.hilyard@gmail.com> | 2023-01-14 16:03:02 -0800 |
commit | b0d1aa6d5076738965f1f0fd9df98c6cd5bf946f (patch) | |
tree | 35a2e2b6ff94425459bead944b4b73b87d51c460 /build.gradle | |
parent | 7a93277b92f834c5a27f627cd0f873417cdbe95e (diff) | |
download | Iceberg-b0d1aa6d5076738965f1f0fd9df98c6cd5bf946f.tar.gz Iceberg-b0d1aa6d5076738965f1f0fd9df98c6cd5bf946f.tar.bz2 Iceberg-b0d1aa6d5076738965f1f0fd9df98c6cd5bf946f.zip |
Ported 1.1.4 changes from Forge.
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index bdfc5b2..ba9b7f2 100644 --- a/build.gradle +++ b/build.gradle @@ -59,12 +59,12 @@ jar { rename { "${it}_${project.archivesBaseName}"} } manifest { - attributes(["Specification-Title": project.name, - "Specification-Vendor": project.author, - "Specification-Version": project.version, - "Implementation-Title": project.name, - "Implementation-Version": project.version, - "Implementation-Vendor" : project.author, + attributes(["Specification-Title": project.name, + "Specification-Vendor": project.author, + "Specification-Version": project.version, + "Implementation-Title": project.name, + "Implementation-Version": project.version, + "Implementation-Vendor" : project.author, "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")],) } } |