Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2010-03-20 18:56:36 +0000
committerPascal Rapicault2010-03-20 18:56:36 +0000
commita5d6fcf3c27a43a5bde1b0af7beb8bf32ec669e2 (patch)
treebaa434b2d06e4e157c12eaa147509e1f7b92e1c6 /org.eclipse.equinox.p2.releng
parentc23071a56a89a44e9433258516dda390c2095afa (diff)
downloadrt.equinox.p2-a5d6fcf3c27a43a5bde1b0af7beb8bf32ec669e2.tar.gz
rt.equinox.p2-a5d6fcf3c27a43a5bde1b0af7beb8bf32ec669e2.tar.xz
rt.equinox.p2-a5d6fcf3c27a43a5bde1b0af7beb8bf32ec669e2.zip
Adding pom files to allow build with tycho
Diffstat (limited to 'org.eclipse.equinox.p2.releng')
-rw-r--r--org.eclipse.equinox.p2.releng/buildtime-features/org.eclipse.equinox.p2.user.ui/pom.xml17
-rw-r--r--org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml21
2 files changed, 38 insertions, 0 deletions
diff --git a/org.eclipse.equinox.p2.releng/buildtime-features/org.eclipse.equinox.p2.user.ui/pom.xml b/org.eclipse.equinox.p2.releng/buildtime-features/org.eclipse.equinox.p2.user.ui/pom.xml
new file mode 100644
index 000000000..bfd9f370d
--- /dev/null
+++ b/org.eclipse.equinox.p2.releng/buildtime-features/org.eclipse.equinox.p2.user.ui/pom.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <artifactId>org.eclipse.equinox.p2-parent</artifactId>
+ <groupId>org.eclipse</groupId>
+ <version>0.0.1-SNAPSHOT</version>
+ <relativePath>../org.eclipse.equinox.p2-parent</relativePath>
+ </parent>
+
+ <groupId>org.eclipse</groupId>
+ <artifactId>org.eclipse.equinox.p2.user.ui</artifactId>
+ <version>2.0.0.qualifier</version>
+ <packaging>eclipse-feature</packaging>
+</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 1baf37b51..32500148c 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
@@ -15,6 +15,11 @@
<layout>p2</layout>
<url>http://download.eclipse.org/eclipse/updates/3.6-I-builds</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>
@@ -63,4 +68,20 @@
</plugin>
</plugins>
</build>
+
+ <profiles>
+ <profile>
+ <id>osx</id>
+ <activation>
+ <property>
+ <name>java.vendor.url</name>
+ <value>http://www.apple.com/</value>
+ </property>
+ </activation>
+ <properties>
+ <tycho.test.jvmArgs>-Xmx800m -XX:MaxPermSize=256m -Dosgi.ws=cocoa -XstartOnFirstThread</tycho.test.jvmArgs>
+ <osgi.ws>cocoa</osgi.ws>
+ </properties>
+ </profile>
+ </profiles>
</project> \ No newline at end of file

Back to the top