Skip to main content
summaryrefslogblamecommitdiffstats
blob: 46f39f517a5754c7c4f4cd1d3af109191eb25999 (plain) (tree)






































































                                                                                                     
<?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