[jboss-cvs] JBossAS SVN: r95054 - in branches/Branch_5_x/testsuite: src/resources/deployers/weld/translator and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Oct 16 17:37:56 EDT 2009


Author: smcgowan at redhat.com
Date: 2009-10-16 17:37:56 -0400 (Fri, 16 Oct 2009)
New Revision: 95054

Added:
   branches/Branch_5_x/testsuite/src/resources/deployers/weld/translator/META-INF/
   branches/Branch_5_x/testsuite/src/resources/deployers/weld/translator/META-INF/application.xml
Modified:
   branches/Branch_5_x/testsuite/imports/sections/weld.xml
Log:
JBAS-7266 - fix ejb.jar/ear packaging

Modified: branches/Branch_5_x/testsuite/imports/sections/weld.xml
===================================================================
--- branches/Branch_5_x/testsuite/imports/sections/weld.xml	2009-10-16 21:04:55 UTC (rev 95053)
+++ branches/Branch_5_x/testsuite/imports/sections/weld.xml	2009-10-16 21:37:56 UTC (rev 95054)
@@ -7,6 +7,9 @@
          <fileset dir="${build.classes}">
             <include name="org/jboss/test/deployers/weld/translator/ejb/**"/>
          </fileset>
+	<fileset dir="${source.resources}/deployers/weld/translator/ejb">
+            <include name="META-INF/beans.xml"/>
+         </fileset>
       </jar>
       
       <war warfile="${build.lib}/weld-translator.war"
@@ -28,6 +31,9 @@
             <include name="weld-translator.jar"/>
             <include name="weld-translator.war"/>
          </fileset>
+	<fileset dir="${source.resources}/deployers/weld/translator">
+            <include name="META-INF/application.xml"/>
+         </fileset>
       </jar>
    </target>
    

Added: branches/Branch_5_x/testsuite/src/resources/deployers/weld/translator/META-INF/application.xml
===================================================================
--- branches/Branch_5_x/testsuite/src/resources/deployers/weld/translator/META-INF/application.xml	                        (rev 0)
+++ branches/Branch_5_x/testsuite/src/resources/deployers/weld/translator/META-INF/application.xml	2009-10-16 21:37:56 UTC (rev 95054)
@@ -0,0 +1,18 @@
+<?xml version="1.0"?>
+
+<application xmlns="http://java.sun.com/xml/ns/javaee" 
+             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd"
+             version="5">
+
+  <display-name>weld-translator-ear</display-name>
+  <module>
+    <web>
+      <web-uri>weld-translator.war</web-uri>
+      <context-root>/weld-translator</context-root>
+    </web>
+  </module>
+  <module>
+    <ejb>weld-translator.jar</ejb>
+  </module>
+</application>




More information about the jboss-cvs-commits mailing list