Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2013-07-11 19:00:24 +0000
committerThanh Ha2013-08-07 19:12:23 +0000
commit896e6cb9cab36628a7e4076750ee37817a859afc (patch)
treeda023ea582d1321bb5e7da564d55f363c02ea3da
parentf32736bbeac8093e38f0a9c5ea44f4dbf52a3d44 (diff)
downloadeclipse.platform.releng.aggregator-896e6cb9cab36628a7e4076750ee37817a859afc.tar.gz
eclipse.platform.releng.aggregator-896e6cb9cab36628a7e4076750ee37817a859afc.tar.xz
eclipse.platform.releng.aggregator-896e6cb9cab36628a7e4076750ee37817a859afc.zip
Bug 388878 - Need CBI maven plugin for signing windows and macosx binaries
- Configure SDK to use winsigner and macsigner plugins from CBI plugins 1.0.4-SNAPSHOT
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml b/eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml
index 42e46c5f1..bf2f66aa4 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml
+++ b/eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml
@@ -84,6 +84,7 @@
</execution>
<execution>
<id>archive-products</id>
+ <phase>pre-integration-test</phase>
<goals>
<goal>archive-products</goal>
</goals>
@@ -100,4 +101,39 @@
</plugins>
</build>
+ <profiles>
+ <profile>
+ <id>eclipse-sign</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-winsigner-plugin</artifactId>
+ <version>${cbi-plugins.version}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ <phase>package</phase>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-macsigner-plugin</artifactId>
+ <version>${cbi-plugins.version}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ <phase>package</phase>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>

Back to the top