Benjamin Bentmann
Thu, 23 Jul 2009 12:16:50 -0700
This plugin signs and verifies the project artifacts using the jarsigner tool. See the plugin's site for more details:
http://maven.apache.org/plugins/maven-jarsigner-plugin/The new plugin is meant to supercede the existing jar:sign and jar:sign-verify goals from the Maven Jar Plugin which will be deprecated in a future release.
To use the new plugin in your projects, you need to add the
the following plugin configuration to your POM:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.0</version>
<executions>
...
</executions>
</plugin>
Release Notes - Maven 2.x Jar Signer Plugin - Version 1.0
(none - initial release)
Enjoy,
-The Maven team