Reputation: 21
I'd like to add an Implementation-Version line to manifest in my warfile.with implementation version as projectname_mmddyyy.version.How can configure this in maven?
Upvotes: 0
Views: 148
Reputation: 21851
See Maven Archiver for reference. The configuration should go like this:
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archive>
...
</archive>
</configuration>
Upvotes: 1