Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2012-08-21 14:39:33 +0000
committerThanh Ha2012-08-21 14:39:33 +0000
commit3b3851d68fe3a7878188fed6250cd84a723edbbf (patch)
tree731261e461bb87aae049eca7eedb3250967fceaf /eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml
parentd2ada2b9d4980a75212124173301b961ec210ce5 (diff)
downloadeclipse.platform.releng.aggregator-3b3851d68fe3a7878188fed6250cd84a723edbbf.tar.gz
eclipse.platform.releng.aggregator-3b3851d68fe3a7878188fed6250cd84a723edbbf.tar.xz
eclipse.platform.releng.aggregator-3b3851d68fe3a7878188fed6250cd84a723edbbf.zip
Move product build to tychoEclipseBuilder
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml72
1 files changed, 72 insertions, 0 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml b/eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml
new file mode 100644
index 000000000..c8aa6e62b
--- /dev/null
+++ b/eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml
@@ -0,0 +1,72 @@
+<?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 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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>eclipse.platform.releng.tychoeclipsebuilder</groupId>
+ <artifactId>eclipse.platform.releng.tychoeclipsebuilder</artifactId>
+ <version>4.2.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.platform.ide</artifactId>
+ <version>4.2.0-SNAPSHOT</version>
+ <packaging>eclipse-repository</packaging>
+
+ <!--
+ :pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse
+
+ R4_HEAD branch of /org.eclipse.releng.eclipsebuilder/eclipse/buildConfigs/platform
+ -->
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-director-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>materialize-products</id>
+ <goals>
+ <goal>materialize-products</goal>
+ </goals>
+ <configuration>
+ <profile>SDKProfile</profile>
+ <products>
+ <product>
+ <id>org.eclipse.platform.ide</id>
+ <rootFolder>eclipse</rootFolder>
+ </product>
+ </products>
+ </configuration>
+ </execution>
+ <execution>
+ <id>archive-products</id>
+ <goals>
+ <goal>archive-products</goal>
+ </goals>
+ <configuration>
+ <formats>
+ <win32>zip</win32>
+ <linux>tar.gz</linux>
+ <macosx>tar.gz</macosx>
+ </formats>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>

Back to the top