[jbosstools-commits] JBoss Tools SVN: r42212 - in trunk/seam/tests: org.jboss.tools.seamfp.ui.test and 1 other directory.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Tue Jun 26 06:28:07 EDT 2012


Author: mickael_istria
Date: 2012-06-26 06:28:07 -0400 (Tue, 26 Jun 2012)
New Revision: 42212

Removed:
   trunk/seam/tests/org.jboss.tools.seamfp.core.test/requirements.properties
   trunk/seam/tests/org.jboss.tools.seamfp.ui.test/requirements.properties
Modified:
   trunk/seam/tests/org.jboss.tools.seamfp.core.test/pom.xml
   trunk/seam/tests/org.jboss.tools.seamfp.ui.test/pom.xml
Log:
JBIDE-11714: WIP on Seam w/ EAP

Modified: trunk/seam/tests/org.jboss.tools.seamfp.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seamfp.core.test/pom.xml	2012-06-26 09:56:31 UTC (rev 42211)
+++ trunk/seam/tests/org.jboss.tools.seamfp.core.test/pom.xml	2012-06-26 10:28:07 UTC (rev 42212)
@@ -12,7 +12,7 @@
 	<packaging>eclipse-test-plugin</packaging>
 
 	<properties>
-		<systemProperties>-Djbosstools.test.seam.2.0.1.GA.home=${requirement.build.root}/jboss-eap-4.3/seamfp</systemProperties>
+		<systemProperties>-Djbosstools.test.seam.2.0.1.GA.home=${requirementsDirectory}/jboss-eap-4.3/seamfp</systemProperties>
 		<coverage.filter>org.jboss.tools.seam*</coverage.filter>
 		<emma.instrument.bundles>org.jboss.tools.seam.core</emma.instrument.bundles>
 	</properties>
@@ -20,6 +20,62 @@
 	<build>
 		<plugins>
 			<plugin>
+				<groupId>com.googlecode.maven-download-plugin</groupId>
+				<artifactId>maven-download-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>install-eap</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://download.devel.redhat.com/released/JBEAP-4.3.0/CP03/zip/jboss-eap-noauth-4.3.0.GA_CP03.zip</url>
+							<md5>18dc28785c8b156b36e2d92db699064a</md5>
+							<unpack>true</unpack>
+						</configuration>
+					</execution>
+					<execution>
+						<id>install-eap-seam-gen</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://download.jboss.org/jbosstools/test-runtimes/rhds-seam-gen-patch.zip</url>
+							<md5>79b37541804f49844ea7322c0ff599c1</md5>
+							<unpack>true</unpack>
+							<outputDirectory>${requirementsDirectory}/jboss-eap-4.3/seam</outputDirectory>
+						</configuration>
+					</execution>
+					<execution>
+						<id>install-eap-fp</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://download.devel.redhat.com/released/JBEAP-4.3.0/CP03/zip/jboss-eap-fp-4.3.0.CP03-FP01.zip</url>
+							<md5>38fe2a2a55edc5239ba680eff3b29533</md5>
+							<unpack>true</unpack>
+						</configuration>
+					</execution>
+					<execution>
+						<id>install-seam-fp-patch</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://download.jboss.org/jbosstools/test-runtimes/jbds-seamfp-patch.zip</url>
+							<md5>c3af3b56add0acccb72db88de477f3c7</md5>
+							<unpack>true</unpack>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		
+			<plugin>
 				<groupId>org.eclipse.tycho</groupId>
 				<artifactId>tycho-surefire-plugin</artifactId>
 				<configuration>

Deleted: trunk/seam/tests/org.jboss.tools.seamfp.core.test/requirements.properties
===================================================================
--- trunk/seam/tests/org.jboss.tools.seamfp.core.test/requirements.properties	2012-06-26 09:56:31 UTC (rev 42211)
+++ trunk/seam/tests/org.jboss.tools.seamfp.core.test/requirements.properties	2012-06-26 10:28:07 UTC (rev 42212)
@@ -1 +0,0 @@
-requirements=jbeap,eapseamgen,seamfp
\ No newline at end of file

Modified: trunk/seam/tests/org.jboss.tools.seamfp.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seamfp.ui.test/pom.xml	2012-06-26 09:56:31 UTC (rev 42211)
+++ trunk/seam/tests/org.jboss.tools.seamfp.ui.test/pom.xml	2012-06-26 10:28:07 UTC (rev 42212)
@@ -20,6 +20,61 @@
 	<build>
 		<plugins>
 			<plugin>
+				<groupId>com.googlecode.maven-download-plugin</groupId>
+				<artifactId>maven-download-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>install-eap</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://download.devel.redhat.com/released/JBEAP-4.3.0/CP03/zip/jboss-eap-noauth-4.3.0.GA_CP03.zip</url>
+							<md5>18dc28785c8b156b36e2d92db699064a</md5>
+							<unpack>true</unpack>
+						</configuration>
+					</execution>
+					<execution>
+						<id>install-eap-seam-gen</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://download.jboss.org/jbosstools/test-runtimes/rhds-seam-gen-patch.zip</url>
+							<md5>79b37541804f49844ea7322c0ff599c1</md5>
+							<unpack>true</unpack>
+							<outputDirectory>${requirementsDirectory}/jboss-eap-4.3/seam</outputDirectory>
+						</configuration>
+					</execution>
+					<execution>
+						<id>install-eap-fp</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://download.devel.redhat.com/released/JBEAP-4.3.0/CP03/zip/jboss-eap-fp-4.3.0.CP03-FP01.zip</url>
+							<md5>38fe2a2a55edc5239ba680eff3b29533</md5>
+							<unpack>true</unpack>
+						</configuration>
+					</execution>
+					<execution>
+						<id>install-seam-fp-patch</id>
+						<phase>pre-integration-test</phase>
+						<goals>
+							<goal>wget</goal>
+						</goals>
+						<configuration>
+							<url>http://download.jboss.org/jbosstools/test-runtimes/jbds-seamfp-patch.zip</url>
+							<md5>c3af3b56add0acccb72db88de477f3c7</md5>
+							<unpack>true</unpack>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
 				<groupId>org.eclipse.tycho</groupId>
 				<artifactId>tycho-surefire-plugin</artifactId>
 				<configuration>

Deleted: trunk/seam/tests/org.jboss.tools.seamfp.ui.test/requirements.properties
===================================================================
--- trunk/seam/tests/org.jboss.tools.seamfp.ui.test/requirements.properties	2012-06-26 09:56:31 UTC (rev 42211)
+++ trunk/seam/tests/org.jboss.tools.seamfp.ui.test/requirements.properties	2012-06-26 10:28:07 UTC (rev 42212)
@@ -1 +0,0 @@
-requirements=jbeap,eapseamgen,seamfp
\ No newline at end of file



More information about the jbosstools-commits mailing list