Hi all! I'm trying to include artifact's version (variable versao.sis) into
manifest.mf file in a jar, war and ear, but I didn't manager to do this.
I tried to include the lines below, but it didn't work:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
*<Implementation-Version>${versao.sis}</Implementation-Version>*
</manifestEntries>
</archive>
</configuration>
</plugin>
How can I do this kind of thing?
Thanks a lot in advance.
Regards,
Roberto.