Add support for signing the jars when building the repo
authorMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Thu, 6 Nov 2014 21:53:54 +0000 (16:53 -0500)
committerMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Thu, 6 Nov 2014 22:36:41 +0000 (17:36 -0500)
Also update siteDestination to actual real path on the server.

Change-Id: Ib74f39ff0a7a48a75326396fc69fc3b960556a1d
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/36080
Tested-by: Hudson CI
org.eclipse.tracecompass.releng-site/pom.xml
pom.xml

index 6a816229ad0d03fd56a9e48e076e73285faf58f7..bbe9e8787bc0b85c396cc7e5e573f502bbdab579 100644 (file)
@@ -31,7 +31,7 @@
   <profile>
     <id>build-update-site</id>
     <properties>
-      <siteDestination>/var/www/tools/tracecompass/nightly/</siteDestination>
+      <siteDestination>/home/data/httpd/download.eclipse.org/tracecompass/master/nightly/</siteDestination>
     </properties>
     <build>
       <plugins>
diff --git a/pom.xml b/pom.xml
index 260e6d2bd0d44768080047dcd3147cf98f2cfdb1..e51e3862248824c5043f5ea0c41badd1d9abcdd5 100644 (file)
--- a/pom.xml
+++ b/pom.xml
         <module>org.eclipse.tracecompass.rcp.product</module>
       </modules>
   </profile>
+  <profile>
+    <id>sign-update-site</id>
+    <build>
+      <plugins>
+        <plugin>
+          <groupId>org.eclipse.cbi.maven.plugins</groupId>
+          <artifactId>eclipse-jarsigner-plugin</artifactId>
+          <version>1.1.1</version>
+          <executions>
+            <execution>
+              <id>sign</id>
+              <phase>install</phase>
+              <goals>
+                <goal>sign</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+      </plugins>
+    </build>
+  </profile>
   <profile>
     <id>performance</id>
     <modules>
This page took 0.030918 seconds and 5 git commands to generate.