[jboss-cvs] JBossAS SVN: r61037 - branches/Branch_4_2/ejb3.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Mar 1 19:11:46 EST 2007


Author: bdecoste
Date: 2007-03-01 19:11:45 -0500 (Thu, 01 Mar 2007)
New Revision: 61037

Modified:
   branches/Branch_4_2/ejb3/build-test.xml
Log:
fix and tests for new home jndi binding default and annotations

Modified: branches/Branch_4_2/ejb3/build-test.xml
===================================================================
--- branches/Branch_4_2/ejb3/build-test.xml	2007-03-02 00:03:45 UTC (rev 61036)
+++ branches/Branch_4_2/ejb3/build-test.xml	2007-03-02 00:11:45 UTC (rev 61037)
@@ -2562,6 +2562,22 @@
       </war>
    </target>
 
+   <target name="homeinterface"
+      description="Builds all jar files."
+      depends="compile-classes">
+
+      <mkdir dir="${build.lib}"/>
+
+      <jar jarfile="${build.lib}/homeinterface-test.jar">
+         <fileset dir="${build.classes}">
+            <include name="org/jboss/ejb3/test/homeinterface/*.class"/>
+         </fileset>
+         <fileset dir="${resources}/test/homeinterface">
+            <include name="META-INF/jboss.xml"/>
+         </fileset>
+      </jar>
+   </target>
+
    <target name="stateless"
       description="Builds all jar files."
       depends="compile-classes">
@@ -2968,7 +2984,7 @@
       </jar>
    </target>
    
-   <target name="jars" depends="timestampentity, servicexmbean, arjuna, mdbtransactions, unauthenticatedprincipal, clusteredservice, invoker, classloader, 
+   <target name="jars" depends="homeinterface, timestampentity, servicexmbean, arjuna, mdbtransactions, unauthenticatedprincipal, clusteredservice, invoker, classloader, 
       circulardependency, jsp, timerdependency, servicedependency, servlet, stateless14, webservices, ear, ejbthree440, 
       ejbthree454, ejbthree653, ejbthree670, ejbthree712, ejbthree751, ejbthree832,
       aspectdomain, ejbcontext, schema, mail, scopedclassloader, dependency, jaxws,
@@ -3383,6 +3399,9 @@
          <param name="test" value="stateless"/>
       </antcall>
       <antcall target="test" inheritRefs="true">
+         <param name="test" value="homeinterface"/>
+      </antcall>
+      <antcall target="test" inheritRefs="true">
          <param name="test" value="container"/>
       </antcall>
       <antcall target="test" inheritRefs="true">




More information about the jboss-cvs-commits mailing list