Skip to content

Commit

Permalink
Maven build - MANIFEST.MF Implementation-Version fix (#2202)
Browse files Browse the repository at this point in the history
Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman authored Jul 2, 2024
1 parent de0bdcd commit 8c0a9ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bundles/eclipselink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@
<Specification-Version>${release.version}</Specification-Version>
<Implementation-Title>${manifest.implementation.title}</Implementation-Title>
<Implementation-Vendor>${manifest.implementation.vendor}</Implementation-Vendor>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Version>${release.version}.${build.qualifier}-${buildNumber}</Implementation-Version>
<Premain-Class>${manifest.premain.class}</Premain-Class>
<Multi-Release>true</Multi-Release>
</manifestEntries>
Expand Down Expand Up @@ -599,7 +599,7 @@
<Specification-Version>${release.version}</Specification-Version>
<Implementation-Title>${manifest.implementation.title}</Implementation-Title>
<Implementation-Vendor>${manifest.implementation.vendor}</Implementation-Vendor>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Version>${release.version}.${build.qualifier}-${buildNumber}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2024 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down Expand Up @@ -64,6 +64,8 @@ public static String getVersionString() {
sb.append(getVersion());
sb.append(SEPARATOR);
sb.append(getQualifier());
sb.append('-');
sb.append(getBuildRevision());
return sb.toString();
}

Expand Down

0 comments on commit 8c0a9ca

Please sign in to comment.