Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'launcher-binary-parent')
-rw-r--r--launcher-binary-parent/pom.xml65
1 files changed, 65 insertions, 0 deletions
diff --git a/launcher-binary-parent/pom.xml b/launcher-binary-parent/pom.xml
new file mode 100644
index 000000000..6c6d10bc5
--- /dev/null
+++ b/launcher-binary-parent/pom.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012 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
+-->
+
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse.equinox.framework</groupId>
+ <artifactId>rt.equinox.framework</artifactId>
+ <version>3.8.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>launcher-binary-parent</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+ <launcher-binary.version>1407</launcher-binary.version>
+ <launcher-binary.ext>so</launcher-binary.ext>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.3</version>
+ <executions>
+ <execution>
+ <id>copy-binary</id>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <phase>generate-resources</phase>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>${project.artifactId}</artifactId>
+ <version>${launcher-binary.version}</version>
+ <classifier>binary</classifier>
+ <type>${launcher-binary.ext}</type>
+
+ <outputDirectory>${project.basedir}</outputDirectory>
+ <destFileName>eclipse_${launcher-binary.version}.${launcher-binary.ext}</destFileName>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>

Back to the top