In my master POM, I have <pluginManagement>
where I define configurations for the maven-jar-plugin
, maven-war-plugin
and maven-ear-plugin
. Each of these has
<configuration>
<archive>
<manifestEntries>
<Build-Time>${maven.build.timestamp}</Build-Time>
<SCM-Revision>${scmRevision}</SCM-Revision>
<SCM-Branch>${scmBranch}</SCM-Branch>
<Built-By>${user.name}</Built-By>
</manifestEntries>
</archive>
</configuration>
Is there a way to share a group of manifest entries so I don't have to add new items to 3 separate places?