Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2019-07-02 09:48:06 +0000
committerSravan Kumar Lakkimsetti2019-07-02 09:52:19 +0000
commit69c1541baa1e4c801e0aa005ed90463aa98072d7 (patch)
treec89f50acaf72375a3111ffdb71ef7f1ad1c7bfe3 /eclipse.platform.releng.tychoeclipsebuilder/win-sign/winSignPom.xml
parentca9dfd42117728c5bac486764cb19be2ea36374b (diff)
downloadeclipse.platform.releng.aggregator-69c1541baa1e4c801e0aa005ed90463aa98072d7.tar.gz
eclipse.platform.releng.aggregator-69c1541baa1e4c801e0aa005ed90463aa98072d7.tar.xz
eclipse.platform.releng.aggregator-69c1541baa1e4c801e0aa005ed90463aa98072d7.zip
Bug 548431 - Produce signed windows launcher bundles in the platform
repo Change-Id: Id2fa0d98fa0639eae1f00201f11e32101f3ad42a Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/win-sign/winSignPom.xml')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/win-sign/winSignPom.xml71
1 files changed, 71 insertions, 0 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/win-sign/winSignPom.xml b/eclipse.platform.releng.tychoeclipsebuilder/win-sign/winSignPom.xml
new file mode 100644
index 000000000..46f39f517
--- /dev/null
+++ b/eclipse.platform.releng.tychoeclipsebuilder/win-sign/winSignPom.xml
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2017 Eclipse Foundation.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Igor Fedorenko - initial implementation
+ David Williams - improvements and maintenance
+ -->
+
+<project
+ xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.eclipse.launcher</groupId>
+ <artifactId>eclipse-signer</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <id>eclipse</id>
+ <url>https://repo.eclipse.org/content/repositories/cbi/</url>
+ </pluginRepository>
+ </pluginRepositories>
+ <build>
+ <!-- To define the plugin version in your parent POM -->
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-winsigner-plugin</artifactId>
+ <version>1.1.5</version>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ <!-- To use the plugin goals in your POM or parent POM -->
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-winsigner-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ <configuration>
+ <baseSearchDir>.</baseSearchDir>
+ <continueOnFail>true</continueOnFail>
+ <fileNames>
+ <fileName>rt.exe</fileName>
+ <fileName>launcher.exe</fileName>
+ <fileName>eclipse.exe</fileName>
+ <fileName>eclipsec.exe</fileName>
+ </fileNames>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>

Back to the top