Benjamin Bentmann
Wed, 30 Sep 2009 06:42:52 -0700
The Maven team is pleased to announce the release of the Maven Jarsigner Plugin, version 1.2. 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/ This 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 updated plugin in your projects, you need to add the following snippet to the plugins or plugin management section of your POM:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.2</version>
<executions>
...
</executions>
</plugin>
Release Notes - Maven 2.x Jar Signer Plugin - Version 1.2
** New Feature
* [MJARSIGNER-8] - Allow to exclude specific attachments from
signing/verification
** Wish
* [MJARSIGNER-7] - jarsigner plugin to support all "types" of zip files
Enjoy,
-The Maven team