Is there a way to use the current date in the POM? For example, I want
to put the current date in the manifest, so I would like to do
something like this:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<mode>development</mode>
<Implementation-Version>${pom.version}</Implementation-Version>
<Build-Date>${today}</Build-Date>
</manifestEntries>
</archive>
</configuration>
</plugin>
Thanks.
Bryce
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]