Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2019-07-03 05:06:03 +0000
committerSravan Kumar Lakkimsetti2019-07-03 05:06:03 +0000
commitaf870bb8f1b1611954967668a1f71e3f315c64ce (patch)
tree8b8b0aa1ebf7c7c5f54a792bf9a6dcc56d2a7863 /eclipse.platform.releng.tychoeclipsebuilder/sdk
parentc7e89b109e12801679219b863cd6bd10247345d5 (diff)
downloadeclipse.platform.releng.aggregator-af870bb8f1b1611954967668a1f71e3f315c64ce.tar.gz
eclipse.platform.releng.aggregator-af870bb8f1b1611954967668a1f71e3f315c64ce.tar.xz
eclipse.platform.releng.aggregator-af870bb8f1b1611954967668a1f71e3f315c64ce.zip
Bug 548431 - Produce signed windows launcher bundles in the platform
repo Change-Id: I2cdf177b24dbd1e91efe81b75d63da6246d3991e Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/sdk')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml b/eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml
index 6d6fbd847..79515fd70 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml
+++ b/eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml
@@ -142,6 +142,22 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <artifactId>exec-maven-plugin</artifactId>
+ <groupId>org.codehaus.mojo</groupId>
+ <executions>
+ <execution>
+ <id>winSigner</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <configuration>
+ <executable>${basedir}/../win-sign/reSign.sh</executable>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</profile>

Back to the top