1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Description: Use maven-jar-plugin to sign jar as maven-jarsigner-plugin
is not yet packaged for debian.
Author: James Page <james.page@ubuntu.com>
Forwarded: not-needed
Index: jenkins-remoting/pom.xml
===================================================================
--- jenkins-remoting.orig/pom.xml 2012-01-06 11:24:05.503380716 +0000
+++ jenkins-remoting/pom.xml 2012-01-06 11:37:16.508294293 +0000
@@ -160,6 +160,18 @@
</manifest>
</archive>
</configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ <configuration>
+ <alias>${hudson.sign.alias}</alias>
+ <storepass>${hudson.sign.storepass}</storepass>
+ <keystore>${hudson.sign.keystore}</keystore>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
<plugin>
<artifactId>maven-jarsigner-plugin</artifactId>
|