user1390213
user1390213

Reputation: 21

I'd like to add an Implementation-Version to manifest in my warfile in maven

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

Answers (1)

Andrew Logvinov
Andrew Logvinov

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

Related Questions