Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2011-12-10 04:34:58 +0000
committerIgor Fedorenko2011-12-10 04:34:58 +0000
commitbafa86d50ef92bc0b426f815121a75edf13d9194 (patch)
treeb40cdc9e6a88c0e905221c346f92cbcf0e6bc9f5 /TMP/org.eclipse.sdk.epp/pom.xml
downloadeclipse.platform.releng.aggregator-bafa86d50ef92bc0b426f815121a75edf13d9194.tar.gz
eclipse.platform.releng.aggregator-bafa86d50ef92bc0b426f815121a75edf13d9194.tar.xz
eclipse.platform.releng.aggregator-bafa86d50ef92bc0b426f815121a75edf13d9194.zip
initial checkin
Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
Diffstat (limited to 'TMP/org.eclipse.sdk.epp/pom.xml')
-rw-r--r--TMP/org.eclipse.sdk.epp/pom.xml66
1 files changed, 66 insertions, 0 deletions
diff --git a/TMP/org.eclipse.sdk.epp/pom.xml b/TMP/org.eclipse.sdk.epp/pom.xml
new file mode 100644
index 000000000..11aa4d0df
--- /dev/null
+++ b/TMP/org.eclipse.sdk.epp/pom.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.sdk.epp</artifactId>
+ <packaging>eclipse-repository</packaging>
+
+ <repositories>
+ <repository>
+ <id>orbit</id>
+ <url>${orbit-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ <repository>
+ <id>emf</id>
+ <url>${emf-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ <repository>
+ <id>natives</id>
+ <url>${natives-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ <repository>
+ <id>ecf</id>
+ <url>${ecf-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ <repository>
+ <id>jetty</id>
+ <url>${jetty-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ </repositories>
+
+ <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>
+ </execution>
+ <execution>
+ <id>archive-products</id>
+ <goals>
+ <goal>archive-products</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>

Back to the top