Hi,
I'm using maven-b5 and when generate Jars o Wars in the Manifest.mf don't appears the
following information:
- Specification-Title
- Specification-Version
- Specification-Vendor
- Implementation-Title
- Implementation-Version
- Implementation-Vendor
using maven-b4 (before the upgrade) the Manifest.mf was ok .
seems that the following extract of code doesn't work
<manifest>
<attribute name="Built-By" value="${user.name}" />
<section name="${pom.package}">
<attribute name="Specification-Title" value="${pom.id}" />
<attribute name="Specification-Version"
value="${pom.currentVersion}" />
<attribute name="Specification-Vendor"
value="${pom.organization.name}" />
<attribute name="Implementation-Title"
value="${pom.package}" />
<attribute name="Implementation-Version"
value="${pom.currentVersion}" />
<attribute name="Implementation-Vendor"
value="${pom.organization.name}" />
</section>
</manifest>
is it related to Maven or to Ant
Thanks
Edgar