Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2010-03-20 18:56:36 +0000
committerPascal Rapicault2010-03-20 18:56:36 +0000
commita5d6fcf3c27a43a5bde1b0af7beb8bf32ec669e2 (patch)
treebaa434b2d06e4e157c12eaa147509e1f7b92e1c6 /bundles/org.eclipse.equinox.p2.tests.ui
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 'bundles/org.eclipse.equinox.p2.tests.ui')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests.ui/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests.ui/pom.xml b/bundles/org.eclipse.equinox.p2.tests.ui/pom.xml
new file mode 100644
index 000000000..9dcaf0c0d
--- /dev/null
+++ b/bundles/org.eclipse.equinox.p2.tests.ui/pom.xml
@@ -0,0 +1,34 @@
+<?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.tests.ui</artifactId>
+ <version>1.0.0.qualifier</version>
+ <packaging>eclipse-test-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-test-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <testSuite>org.eclipse.equinox.p2.tests.ui</testSuite>
+ <testClass>org.eclipse.equinox.p2.tests.ui.AutomatedTests
+ </testClass>
+ <argLine>-Xmx512m -XstartOnFirstThread</argLine>
+ <useUIHarness>true</useUIHarness>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>

Back to the top