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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 2 19:42:54 EDT 2007


Author: bdecoste
Date: 2007-08-02 19:42:54 -0400 (Thu, 02 Aug 2007)
New Revision: 64441

Modified:
   trunk/ejb3/build-test.xml
Log:
[EJBTHREE-942] fix and test for default RemoteBinding in ejb3-interceptors-aop.xml. Moved binding metadata processing from init to create

Modified: trunk/ejb3/build-test.xml
===================================================================
--- trunk/ejb3/build-test.xml	2007-08-02 23:42:33 UTC (rev 64440)
+++ trunk/ejb3/build-test.xml	2007-08-02 23:42:54 UTC (rev 64441)
@@ -3049,7 +3049,23 @@
 
 	  <copy file="${build.lib}/stateless-test.jar" tofile="${build.lib}/stateless-test.ejb3"/>
    </target>
+	
+   <target name="defaultremotebindings"
+      description="Builds all jar files."
+      depends="compile-classes">
 
+      <mkdir dir="${build.lib}"/>
+
+      <jar jarfile="${build.lib}/defaultremotebindings-test.jar">
+         <fileset dir="${build.classes}">
+            <include name="org/jboss/ejb3/test/defaultremotebindings/*.class"/>
+         </fileset>
+         <fileset dir="${resources}/test/defaultremotebindings">
+            <include name="*.xml"/>
+         </fileset>
+      </jar>
+   </target>
+
    <target name="localfromremote"
       description="Builds all jar files."
       depends="compile-classes">
@@ -3524,7 +3540,7 @@
 	  </copy>
    </target>
 
-   <target name="jars" depends="localfromremote, clusteredjms, entityoptimisticlocking, concurrentnaming, propertyreplacement, persistenceunits, appclient, tck5sec, invalidtxmdb, descriptortypo, libdeployment, homeinterface, timestampentity, arjuna, mdbtransactions, unauthenticatedprincipal, clusteredservice, invoker, classloader,
+   <target name="jars" depends="defaultremotebindings, localfromremote, clusteredjms, entityoptimisticlocking, concurrentnaming, propertyreplacement, persistenceunits, appclient, tck5sec, invalidtxmdb, descriptortypo, libdeployment, homeinterface, timestampentity, arjuna, mdbtransactions, unauthenticatedprincipal, clusteredservice, invoker, classloader,
       circulardependency, jsp, timerdependency, servicedependency, servlet, stateless14, webservices, ear, ejbthree440,
       ejbthree454, ejbthree653, ejbthree670, ejbthree712, ejbthree724, ejbthree751, ejbthree832, ejbthree921, ejbthree936,
       ejbthree939,
@@ -4269,6 +4285,9 @@
          <param name="test" value="stateless"/>
       </antcall>
 	  <antcall target="test" inheritRefs="true">
+         <param name="test" value="defaultremotebindings"/>
+      </antcall>
+	  <antcall target="test" inheritRefs="true">
 	      <param name="test" value="concurrentnaming"/>
 	  </antcall>
       <antcall target="test" inheritRefs="true">




More information about the jboss-cvs-commits mailing list