Author: mickael_istria
Date: 2012-06-26 07:30:45 -0400 (Tue, 26 Jun 2012)
New Revision: 42214
Removed:
trunk/seam/tests/org.jboss.tools.seam.ui.test/requirements.properties
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml
Log:
JBIDE-11714: WIP on Seam w/ EAP
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml 2012-06-26 11:15:55 UTC (rev
42213)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml 2012-06-26 11:30:45 UTC (rev
42214)
@@ -12,7 +12,7 @@
<packaging>eclipse-test-plugin</packaging>
<properties>
- <systemProperties>-Djbosstools.test.jboss.home.4.2=${requirement.build.root}/jboss-4.2.3.GA
-Djbosstools.test.seam.1.2.1.eap.home=${requirement.build.root}/jboss-eap-4.3/seam
-Djbosstools.test.seam.2fp.eap.home=${requirement.build.root}/jboss-eap-4.3/seamfp
-Djbosstools.test.seam.2.0.1.GA.home=${requirement.build.root}/jboss-seam-2.0.1.GA
-Djbosstools.test.seam.2.1.0.GA.home=${requirement.build.root}/jboss-seam-2.1.1.GA</systemProperties>
+ <systemProperties>-Djbosstools.test.jboss.home.4.2=${requirementsDirectory}}/jboss-4.2.3.GA
-Djbosstools.test.seam.1.2.1.eap.home=${requirementsDirectory}/jboss-eap-4.3/seam
-Djbosstools.test.seam.2fp.eap.home=${requirementsDirectory}/jboss-eap-4.3/seamfp
-Djbosstools.test.seam.2.0.1.GA.home=${requirementsDirectory}/jboss-seam-2.0.1.GA
-Djbosstools.test.seam.2.1.0.GA.home=${requirementsDirectory}/jboss-seam-2.1.1.GA</systemProperties>
<coverage.filter>org.jboss.tools.seam*</coverage.filter>
<emma.instrument.bundles>org.jboss.tools.seam.core,org.jboss.tools.seam.ui</emma.instrument.bundles>
</properties>
@@ -20,6 +20,108 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>install-as</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.jboss.jbossas</groupId>
+ <artifactId>jboss-as-dist</artifactId>
+ <version>4.2.3.GA</version>
+ <type>zip</type>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <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/jbo...
+ <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-p...
+ <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/jbo...
+ <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-pat...
+ <md5>c3af3b56add0acccb72db88de477f3c7</md5>
+ <unpack>true</unpack>
+ </configuration>
+ </execution>
+ <execution>
+ <id>install-seam-2.0.1</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+ <
url>http://repository.jboss.org/sourceforge/jboss-seam-2.0.1.GA.zip<...
+ <unpack>true</unpack>
+ <md5>0a1accf94fd37e40ab1091ee593b8b75</md5>
+ </configuration>
+ </execution>
+ <execution>
+ <id>install-seam-2.1.1</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+ <
url>http://repository.jboss.org/sourceforge/jboss-seam-2.1.1.GA.zip<...
+ <unpack>true</unpack>
+ <md5>e0c30e4f129a699ff4106eb84cc1220e</md5>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
Deleted: trunk/seam/tests/org.jboss.tools.seam.ui.test/requirements.properties
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/requirements.properties 2012-06-26
11:15:55 UTC (rev 42213)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/requirements.properties 2012-06-26
11:30:45 UTC (rev 42214)
@@ -1 +0,0 @@
-requirements=jbossas-4.2.3.GA,jbeap,eapseamgen,seamfp,seam-2.0.1.GA,seam-2.1.1.GA
\ No newline at end of file