Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2012-04-16 14:59:19 +0000
committerThanh Ha2012-08-15 14:32:03 +0000
commit9936ccbf125bda7000b210140396a53400fcf435 (patch)
tree823268a62c9cb294951388b31954f1288a9459b4
parentc179205aeca0f5251082df62647ad706ce916abd (diff)
downloadeclipse.platform.releng.aggregator-9936ccbf125bda7000b210140396a53400fcf435.tar.gz
eclipse.platform.releng.aggregator-9936ccbf125bda7000b210140396a53400fcf435.tar.xz
eclipse.platform.releng.aggregator-9936ccbf125bda7000b210140396a53400fcf435.zip
Added a master repository eclipse.platform.repository which produces a p2 repo based on the master feature.
-rw-r--r--eclipse.platform.repository/category.xml9
-rw-r--r--eclipse.platform.repository/pom.xml40
-rw-r--r--pom.xml1
3 files changed, 50 insertions, 0 deletions
diff --git a/eclipse.platform.repository/category.xml b/eclipse.platform.repository/category.xml
new file mode 100644
index 000000000..214ad2600
--- /dev/null
+++ b/eclipse.platform.repository/category.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <feature url="../eclipse.platform.releng/features/master/master-3.4.0-SNAPSHOT.jar" id="master" version="0.0.0">
+ <category name="Master Category"/>
+ </feature>
+ <category-def label="Master Category Label" name="Master Category">
+ <description>Master Category Description</description>
+ </category-def>
+</site>
diff --git a/eclipse.platform.repository/pom.xml b/eclipse.platform.repository/pom.xml
new file mode 100644
index 000000000..1c416ddef
--- /dev/null
+++ b/eclipse.platform.repository/pom.xml
@@ -0,0 +1,40 @@
+<?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</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>eclipse.platform.repository</groupId>
+ <artifactId>eclipse.platform.repository</artifactId>
+ <version>3.8.0-SNAPSHOT</version>
+ <packaging>eclipse-repository</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <executionEnvironment>J2SE-1.5</executionEnvironment>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/pom.xml b/pom.xml
index 7f842b40e..90f215009 100644
--- a/pom.xml
+++ b/pom.xml
@@ -53,6 +53,7 @@
<module>eclipse.platform.releng</module>
<module>eclipse.platform.releng.eclipsebuilder</module>
+ <module>eclipse.platform.repository</module>
<module>TMP/eclipse-junit-tests</module>
</modules>
</project>

Back to the top