[weld-commits] Weld SVN: r7039 - archetypes/jsf-weld-servlet-webapp/trunk.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Wed Oct 20 23:43:35 EDT 2010


Author: dan.j.allen
Date: 2010-10-20 23:43:35 -0400 (Wed, 20 Oct 2010)
New Revision: 7039

Modified:
   archetypes/jsf-weld-servlet-webapp/trunk/pom.xml
Log:
temporary fix for arquillian tests


Modified: archetypes/jsf-weld-servlet-webapp/trunk/pom.xml
===================================================================
--- archetypes/jsf-weld-servlet-webapp/trunk/pom.xml	2010-10-21 03:36:39 UTC (rev 7038)
+++ archetypes/jsf-weld-servlet-webapp/trunk/pom.xml	2010-10-21 03:43:35 UTC (rev 7039)
@@ -231,7 +231,6 @@
 
    <profiles>
       <profile>
-         <!-- FIXME broken, requires EE APIs -->
          <id>arq-weld-embedded</id>
          <activation>
             <activeByDefault>true</activeByDefault>
@@ -240,7 +239,10 @@
             <dependency>
                <groupId>org.jboss.arquillian.container</groupId>
                <artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
+               <!-- temporary until we figure out what's going on w/ arquillian & weld
                <version>${version.arquillian}</version>
+               -->
+               <version>1.0.0.Alpha3</version>
                <scope>test</scope>
             </dependency>
             <dependency>
@@ -264,6 +266,19 @@
                <version>2.2</version>
                <scope>test</scope>
             </dependency>
+            <!-- JTA and EJB 3.1 APIs are temporary until we figure out what's going on w/ arquillian & weld -->
+            <dependency>
+               <groupId>javax.transaction</groupId>
+               <artifactId>jta</artifactId>
+               <version>1.1</version>
+               <scope>test</scope>
+            </dependency>
+            <dependency>
+               <groupId>org.jboss.ejb3</groupId>
+               <artifactId>jboss-ejb3-api</artifactId>
+               <version>3.1.0</version>
+               <scope>test</scope>
+            </dependency>
          </dependencies>
       </profile>
    </profiles>



More information about the weld-commits mailing list