Author: psrna
Date: 2011-12-07 11:47:14 -0500 (Wed, 07 Dec 2011)
New Revision: 37065
Added:
trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/pom.xml
Modified:
trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/META-INF/MANIFEST.MF
Log:
* added pom.xml
Modified: trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
---
trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/META-INF/MANIFEST.MF 2011-12-07
16:30:48 UTC (rev 37064)
+++
trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/META-INF/MANIFEST.MF 2011-12-07
16:47:14 UTC (rev 37065)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Portal Tests
Bundle-SymbolicName: org.jboss.tools.portlet.ui.bot.test;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-ActivationPolicy: lazy
Bundle-Vendor:
JBoss by Red Hat
Added: trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/pom.xml
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/pom.xml
(rev 0)
+++ trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/pom.xml 2011-12-07 16:47:14
UTC (rev 37065)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.portlet</groupId>
+ <artifactId>tests</artifactId>
+ <version>1.2.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.portlet.tests</groupId>
+ <artifactId>org.jboss.tools.portlet.ui.bot.test</artifactId>
+
+ <packaging>eclipse-test-plugin</packaging>
+
+ <properties>
+ <jbosstools.test.jboss-gatein.home></jbosstools.test.jboss-gatein.home>
<!--TODO setup default path -->
+ <configurations.dir></configurations.dir> <!-- TODO setup default path
-->
+ <systemProperties>-Djbosstools.test.jboss-gatein.home=${jbosstools.test.jboss-gatein.home}
-Dtest.configurations.dir=${configurations.dir}</systemProperties>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <configuration>
+ <useUIThread>false</useUIThread>
+ <testSuite>org.jboss.tools.portlet.ui.bot.test</testSuite>
+ <testClass>org.jboss.tools.portlet.ui.bot.test.AllTestsSuite</testClass>
+ <skip>${swtbot.test.skip}</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>