Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2012-05-17 18:58:11 +0000
committerIan Bull2012-05-24 05:42:13 +0000
commit3aaf07b5a7427b4005e5177fa5afa141c2bd0da9 (patch)
tree7c8c6627dbc119f6d6f4180f8de9584e7b1babcf /org.eclipse.equinox.p2.releng
parentcb3694589d14417cbbce60197f5b787dae4d04f5 (diff)
downloadrt.equinox.p2-3aaf07b5a7427b4005e5177fa5afa141c2bd0da9.tar.gz
rt.equinox.p2-3aaf07b5a7427b4005e5177fa5afa141c2bd0da9.tar.xz
rt.equinox.p2-3aaf07b5a7427b4005e5177fa5afa141c2bd0da9.zip
Add poms for Tycho buildv20120524-0542
Diffstat (limited to 'org.eclipse.equinox.p2.releng')
-rw-r--r--org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-aggregator/pom.xml16
-rw-r--r--org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml49
-rw-r--r--org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2.obr-aggregator/pom.xml12
3 files changed, 46 insertions, 31 deletions
diff --git a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-aggregator/pom.xml b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-aggregator/pom.xml
index 738f56f87..96f121c0a 100644
--- a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-aggregator/pom.xml
+++ b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-aggregator/pom.xml
@@ -1,4 +1,15 @@
<?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">
@@ -66,5 +77,10 @@
<module>../../bundles/org.eclipse.equinox.simpleconfigurator</module>
<module>../../bundles/org.eclipse.equinox.simpleconfigurator.manipulator</module>
<module>../../bundles/org.eclipse.equinox.p2.publisher.eclipse</module>
+
+ <module>../../features/org.eclipse.equinox.p2.user.ui</module>
+ <module>../../features/org.eclipse.equinox.p2.rcp.feature</module>
+ <module>../../features/org.eclipse.equinox.p2.sdk</module>
+ <module>../../features/org.eclipse.equinox.p2.discovery.feature</module>
</modules>
</project>
diff --git a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml
index 13c5f40ce..2027baf2b 100644
--- a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml
+++ b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml
@@ -1,45 +1,35 @@
+<?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>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
<groupId>org.eclipse</groupId>
<artifactId>org.eclipse.equinox.p2-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
- <properties>
- <tycho-version>0.12.0</tycho-version>
- </properties>
- <repositories>
- <repository>
- <id>indigo</id>
- <layout>p2</layout>
- <url>http://download.eclipse.org/releases/indigo</url>
- </repository>
- <repository>
- <id>indigo updates</id>
- <layout>p2</layout>
- <url>http://download.eclipse.org/eclipse/updates/3.7</url>
- </repository>
-<!-- <repository>-->
-<!-- <id>galileoTest</id>-->
-<!-- <layout>p2</layout>-->
-<!-- <url>file:/Users/Pascal/Downloads/eclipse-testing/eclipse-junit-tests-I20100312-0800</url>-->
-<!-- </repository>-->
- </repositories>
-
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-maven-plugin</artifactId>
- <version>${tycho-version}</version>
- <extensions>true</extensions>
- </plugin>
-
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
- <version>${tycho-version}</version>
<configuration>
<resolver>p2</resolver>
<environments>
@@ -76,7 +66,6 @@
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
- <version>${tycho-version}</version>
<configuration>
<source>1.5</source>
<target>jsr14</target>
diff --git a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2.obr-aggregator/pom.xml b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2.obr-aggregator/pom.xml
index b3eddc4f4..1f5f6dbaf 100644
--- a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2.obr-aggregator/pom.xml
+++ b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2.obr-aggregator/pom.xml
@@ -1,4 +1,15 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<!--
+ 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
+-->
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>org.eclipse.equinox.p2-parent</artifactId>
@@ -16,7 +27,6 @@
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
- <version>${tycho-version}</version>
<configuration>
<resolver>p2</resolver>
<target>

Back to the top