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

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Wed Jun 27 06:40:50 EDT 2012


Author: mickael_istria
Date: 2012-06-27 06:40:49 -0400 (Wed, 27 Jun 2012)
New Revision: 42239

Removed:
   trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/requirements.properties
Modified:
   trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/org.jboss.tools.bpel.ui.bot.test.properties
   trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/pom.xml
Log:
JBIDE-11714: BPEL/Riftsaw

Modified: trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/org.jboss.tools.bpel.ui.bot.test.properties
===================================================================
--- trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/org.jboss.tools.bpel.ui.bot.test.properties	2012-06-27 10:04:08 UTC (rev 42238)
+++ trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/org.jboss.tools.bpel.ui.bot.test.properties	2012-06-27 10:40:49 UTC (rev 42239)
@@ -4,4 +4,4 @@
 #JAVA=
 #EAP|JBOSS_AS|EPP|SOA,<server version>,<jre version to run with>|default,<server home>
 # note : when server is type of SOA, version is version of SOA (not the bundled EAP)
-SERVER=AS,5.1,default,../../../requirements/target/jboss-5.1.0.GA-riftsaw-2.3.0.Final
+SERVER=AS,5.1,default,target/requirements/jboss-5.1.0.GA

Modified: trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/pom.xml
===================================================================
--- trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/pom.xml	2012-06-27 10:04:08 UTC (rev 42238)
+++ trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/pom.xml	2012-06-27 10:40:49 UTC (rev 42239)
@@ -13,14 +13,99 @@
 	<packaging>eclipse-test-plugin</packaging>
 
 	<properties>
-		<emma.filter>org.jboss.tools.bpel.runtimes*</emma.filter>
+		<coverage.filter>org.jboss.tools.bpel.runtimes*</coverage.filter>
 		<emma.instrument.bundles>org.jboss.tools.bpel.runtimes</emma.instrument.bundles>
 		<systemProperties>-Dswtbot.test.properties.file=./org.jboss.tools.bpel.ui.bot.test.properties</systemProperties>
 	</properties>
 
 	<build>
 		<plugins>
+			<!-- Install AS, ESB and Riftsaw -->
 			<plugin>
+				<groupId>com.googlecode.maven-download-plugin</groupId>
+				<artifactId>maven-download-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>install-as-5.1.0</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://repository.jboss.org/sourceforge/jboss-5.1.0.GA.zip</url>
+							<md5>78322c75ca0c13002a04418b4a8bc920</md5>
+							<unpack>true</unpack>
+						</configuration>
+					</execution>
+					<execution>
+						<id>get-esb</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://download.jboss.org/jbossesb/4.11/binary/jbossesb-4.11.zip</url>
+							<md5>506bb7f42777cf0e524ccc37336aa137</md5>
+							<unpack>true</unpack>
+						</configuration>
+					</execution>
+					<execution>
+						<id>get-riftsaw</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://downloads.jboss.org/riftsaw/releases/2.3.0.Final/riftsaw-2.3.0.Final.zip</url>
+							<md5>506bb7f42777cf0e524ccc37336aa137</md5>
+							<unpack>true</unpack>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<artifactId>maven-antrun-plugin</artifactId>
+				<version>1.7</version>
+				<executions>
+					<execution>
+						<id>install-esb</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>run</goal>
+						</goals>
+						<configuration>
+							<skip>${skipRequirements}</skip>
+							<target>
+								<ant dir="${requirementsDirectory}/jboss-esb-4.11/install" target="deploy">
+									<property name="org.jboss.esb.server.home" value="${requirementsDirectory}/jboss-5.1.GA" />
+									<property name="org.jboss.esb.server.config" value="default" />
+								</ant>
+							</target>
+						</configuration>
+					</execution>
+					<execution>
+						<id>install-riftsaw</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>run</goal>
+						</goals>
+						<configuration>
+							<skip>${skipRequirements}</skip>
+							<target>
+								<ant dir="${requirementsDirectory}/riftsaw-2.3.0.Final/install" target="deploy">
+									<property name="org.jboss.as.home" value="${requirementsDirectory}/jboss-5.1.GA" />
+									<property name="org.jboss.as.config" value="default" />
+									<property name="org.jboss.esb.home" value="${requirementsDirectory}/jboss-esb-4.11" />
+									<property name="databasev" value="hsql" />
+									<property name="ws.version" value="3.4.0.GA" />
+								</ant>
+							</target>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		
+			<plugin>
 				<groupId>org.eclipse.tycho</groupId>
 				<artifactId>tycho-surefire-plugin</artifactId>
 				<configuration>

Deleted: trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/requirements.properties
===================================================================
--- trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/requirements.properties	2012-06-27 10:04:08 UTC (rev 42238)
+++ trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/requirements.properties	2012-06-27 10:40:49 UTC (rev 42239)
@@ -1 +0,0 @@
-requirements=jbossas-5.1.0.GA-riftsaw-2.3.0.Final
\ No newline at end of file



More information about the jbosstools-commits mailing list