Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Knauer2013-11-15 14:24:20 +0000
committerMarkus Knauer2013-11-15 17:08:37 +0000
commitfd527936f8fa7c2db4002ccabf3d61ead8d79802 (patch)
tree83d71ae7f17447e6eda2fd41ed8218e85e1c1fa7 /packages/org.eclipse.epp.package.testing.product/pom.xml
parenta79c21d9d54bce27b49a1d26fd30aea2de97cfce (diff)
downloadorg.eclipse.epp.packages-fd527936f8fa7c2db4002ccabf3d61ead8d79802.tar.gz
org.eclipse.epp.packages-fd527936f8fa7c2db4002ccabf3d61ead8d79802.tar.xz
org.eclipse.epp.packages-fd527936f8fa7c2db4002ccabf3d61ead8d79802.zip
Extract parent pom into its own file and add more configuration
Diffstat (limited to 'packages/org.eclipse.epp.package.testing.product/pom.xml')
-rw-r--r--packages/org.eclipse.epp.package.testing.product/pom.xml19
1 files changed, 14 insertions, 5 deletions
diff --git a/packages/org.eclipse.epp.package.testing.product/pom.xml b/packages/org.eclipse.epp.package.testing.product/pom.xml
index 781a0e08..2daa0d11 100644
--- a/packages/org.eclipse.epp.package.testing.product/pom.xml
+++ b/packages/org.eclipse.epp.package.testing.product/pom.xml
@@ -8,17 +8,19 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ EclipseSource - ongoing development
-->
-<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">
+<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>
+
<parent>
<groupId>org.eclipse.epp</groupId>
- <artifactId>epp-parent</artifactId>
+ <artifactId>org.eclipse.epp-parent</artifactId>
<version>2.1.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
+ <relativePath>../../releng/org.eclipse.epp.config/parent/</relativePath>
</parent>
<groupId>org.eclipse.epp</groupId>
@@ -31,6 +33,7 @@
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
+ <version>${tycho.version}</version>
<executions>
<execution>
<id>materialize-products</id>
@@ -46,6 +49,12 @@
</goals>
</execution>
</executions>
+ <configuration>
+ <formats>
+ <linux>tar.gz</linux>
+ <macosx>tar.gz</macosx>
+ </formats>
+ </configuration>
</plugin>
</plugins>
</build>

Back to the top