there is a simple solution
Just what you need is to add
Maven plugin of war
or
Maven-jar-plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<mode>development</mode>
<url>http://sample.com</url>
<key>value</key>
</manifestEntries>
</archive>
</configuration>
</plugin>
And add extra values to manifestEntries.
Relationship Alexandar
source
share