File: sign-jar.patch

package info (click to toggle)
jenkins-remoting 2.11%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 816 kB
  • sloc: java: 5,560; xml: 296; makefile: 16; sh: 8
file content (28 lines) | stat: -rw-r--r-- 991 bytes parent folder | download
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>