Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-08-09 21:37:32 +0000
committerDavid Williams2013-08-09 21:37:32 +0000
commit61b8b2740c52a80a53c5c1146a22365541a52a19 (patch)
tree4cbe7acf3e94117d825bc96643734cdfd518248c /eclipse.platform.releng.tychoeclipsebuilder/platform
parent8e6a79469c9b1a975ad8154af641ad84833f5d1e (diff)
downloadeclipse.platform.releng.aggregator-61b8b2740c52a80a53c5c1146a22365541a52a19.tar.gz
eclipse.platform.releng.aggregator-61b8b2740c52a80a53c5c1146a22365541a52a19.tar.xz
eclipse.platform.releng.aggregator-61b8b2740c52a80a53c5c1146a22365541a52a19.zip
Bug 375853 - Mac OSX 10.8 Mountain Lion Requires Signing for Gatekeeper
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/platform')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml37
1 files changed, 36 insertions, 1 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml b/eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml
index 546156fdd..14baf5f05 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml
+++ b/eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml
@@ -85,6 +85,7 @@
</execution>
<execution>
<id>archive-products</id>
+ <phase>pre-integration-test</phase>
<goals>
<goal>archive-products</goal>
</goals>
@@ -100,5 +101,39 @@
</plugin>
</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