[jbosstools-commits] JBoss Tools SVN: r43040 - trunk/forge/tests/org.jboss.tools.forge.ui.bot.test.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Wed Aug 15 06:37:57 EDT 2012


Author: psrna
Date: 2012-08-15 06:37:57 -0400 (Wed, 15 Aug 2012)
New Revision: 43040

Modified:
   trunk/forge/tests/org.jboss.tools.forge.ui.bot.test/pom.xml
Log:
* forge ui bot tests mavenization


Modified: trunk/forge/tests/org.jboss.tools.forge.ui.bot.test/pom.xml
===================================================================
--- trunk/forge/tests/org.jboss.tools.forge.ui.bot.test/pom.xml	2012-08-15 09:37:59 UTC (rev 43039)
+++ trunk/forge/tests/org.jboss.tools.forge.ui.bot.test/pom.xml	2012-08-15 10:37:57 UTC (rev 43040)
@@ -11,10 +11,37 @@
 	<artifactId>org.jboss.tools.forge.ui.bot.test</artifactId>
 	
 	<packaging>eclipse-test-plugin</packaging>
-	
+	<properties>
+		<jbosstools.test.jboss-as.home>${requirementsDirectory}/jboss-as-7.1.1.Final</jbosstools.test.jboss-as.home>
+		<systemProperties>-Dtest.configurations.dir=resources/properties -Djbosstools.test.jboss-as.home=${jbosstools.test.jboss-as.home}</systemProperties>
+	</properties>
 	<build>
 		<plugins>
 			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-dependency-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>install-as-7.1.1</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>unpack</goal>
+						</goals>
+						<configuration>
+							<artifactItems>
+								<artifactItem>
+										<groupId>org.jboss.as</groupId>
+										<artifactId>jboss-as-dist</artifactId>
+										<version>7.1.1.Final</version>
+										<type>zip</type>
+									</artifactItem>
+								</artifactItems>
+							<skip>${skipRequirements}</skip>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
 				<groupId>org.eclipse.tycho</groupId>
 				<artifactId>tycho-surefire-plugin</artifactId>
 				<configuration>
@@ -28,6 +55,11 @@
 							<artifactId>org.jboss.tools.forge.feature.feature.group</artifactId>
 							<version>0.0.0</version>
 						</dependency>
+						<dependency>
+							<type>p2-installable-unit</type>
+							<artifactId>org.jboss.ide.eclipse.as.feature.feature.group</artifactId>
+							<version>0.0.0</version>
+						</dependency>
 					</dependencies>
 				</configuration>
 			</plugin>



More information about the jbosstools-commits mailing list