Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2012-05-22 18:13:04 +0000
committerThomas Watson2012-05-22 18:13:04 +0000
commitcf6a464cceefd396af4cc7c95b7aaf7e6da0c198 (patch)
tree3b4fa5c744b56890f4793187043f0893f8695f30 /bundles/org.eclipse.osgi.tests/pom.xml
parent071c2190a0211cb30ae1fc0d4b4b0a06bedd7ebf (diff)
downloadrt.equinox.framework-cf6a464cceefd396af4cc7c95b7aaf7e6da0c198.tar.gz
rt.equinox.framework-cf6a464cceefd396af4cc7c95b7aaf7e6da0c198.tar.xz
rt.equinox.framework-cf6a464cceefd396af4cc7c95b7aaf7e6da0c198.zip
Bug 379748 - Pull request for Equinox from CBIv20120522-1813
Add poms for Tycho build
Diffstat (limited to 'bundles/org.eclipse.osgi.tests/pom.xml')
-rw-r--r--bundles/org.eclipse.osgi.tests/pom.xml88
1 files changed, 88 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi.tests/pom.xml b/bundles/org.eclipse.osgi.tests/pom.xml
new file mode 100644
index 000000000..b46c8e27a
--- /dev/null
+++ b/bundles/org.eclipse.osgi.tests/pom.xml
@@ -0,0 +1,88 @@
+<?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>
+ <artifactId>rt.equinox.framework</artifactId>
+ <groupId>org.eclipse.equinox.framework</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+ <groupId>org.eclipse.equinox.framework</groupId>
+ <artifactId>org.eclipse.osgi.tests</artifactId>
+ <version>3.8.0-SNAPSHOT</version>
+ <packaging>eclipse-test-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <testFramework>org.junit</testFramework>
+ <testSuite>org.eclipse.osgi.tests</testSuite>
+ <testClass>org.eclipse.osgi.tests.AutomatedTests</testClass>
+ <dependencies>
+ <dependency>
+ <artifactId>org.eclipse.core.runtime.compatibility.registry</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.jdt.junit4.runtime</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.equinox.event</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.equinox.ds</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ </dependencies>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>osx</id>
+ <activation>
+ <property>
+ <name>java.vendor.url</name>
+ <value>http://www.apple.com/</value>
+ </property>
+ </activation>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <argLine>-Xmx512m -XX:MaxPermSize=256m -XstartOnFirstThread</argLine>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ </profile>
+ </profiles>
+
+
+</project>

Back to the top