[jboss-cvs] JBossAS SVN: r72970 - trunk/ejb3.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri May 2 02:06:03 EDT 2008


Author: scott.stark at jboss.org
Date: 2008-05-02 02:06:03 -0400 (Fri, 02 May 2008)
New Revision: 72970

Modified:
   trunk/ejb3/build.xml
Log:
Restore the ejb3-deployers-beans.xml

Modified: trunk/ejb3/build.xml
===================================================================
--- trunk/ejb3/build.xml	2008-05-02 05:58:12 UTC (rev 72969)
+++ trunk/ejb3/build.xml	2008-05-02 06:06:03 UTC (rev 72970)
@@ -311,14 +311,14 @@
          </fileset>
       </jar>
 			
-			<mkdir dir="${resources}"/>
-			<unjar src="../thirdparty/jboss/jboss-ejb3-core/lib/jboss-ejb3-core.jar" dest="${resources}">
+	<mkdir dir="output/resources"/>
+	<unjar src="../thirdparty/jboss/jboss-ejb3-core/lib/jboss-ejb3-core.jar" dest="output/resources">
         <patternset>
           <include name="*.xml" />
-          <include name="META-INF/*.xml" />
+          <exclude name="META-INF/*.xml" />
           <include name="META-INF/*.properties" />
         </patternset>
-			</unjar>
+	</unjar>
 
       <mkdir dir="${build.lib}/ejb3.deployer"/>
       <copy todir="${build.lib}/ejb3.deployer">
@@ -328,17 +328,23 @@
          </fileset>
          <fileset dir="${resources}">
             <include name="META-INF/ejb3-deployers-beans.xml"/>
+         </fileset>
+         <fileset dir="output/resources">
             <include name="META-INF/persistence.properties"/>
          </fileset>
       </copy>
-      <copy todir="${build.lib}" file="${resources}/ejb3-interceptors-aop.xml"/>
-      <copy todir="${build.lib}" file="${resources}/ejb3-clustered-sfsbcache-beans.xml"/>
-      <copy todir="${build.lib}" file="${resources}/ejb3-entity-cache-beans.xml"/>
-      <copy todir="${build.lib}" file="${resources}/ejb3-timer-service.xml"/>
-      <copy todir="${build.lib}" file="${resources}/ejb3-connectors-service.xml"/>
+      <copy todir="${build.lib}">
+         <fileset dir="output/resources">
+            <include name="ejb3-clustered-sfsbcache-beans.xml"/>
+            <include name="ejb3-entity-cache-beans.xml"/>
+            <include name="ejb3-timer-service.xml"/>
+            <include name="ejb3-connectors-service.xml"/>
+            <include name="ejb3-interceptors-aop.xml"/>
+         </fileset>
+      </copy>
   </target>
+
   
-  
    <!-- ================================================================== -->
    <!-- Cleaning                                                           -->
    <!-- ================================================================== -->




More information about the jboss-cvs-commits mailing list