From: Scott M S. <st...@us...> - 2004-09-09 04:33:16
|
User: starksm Date: 04/09/08 21:33:08 Modified: . build.xml Log: Copy the ejb-management.jar to the testsuite/output/lib for the jsr77 tests Revision Changes Path 1.398 +4 -7 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.397 retrieving revision 1.398 diff -u -r1.397 -r1.398 --- build.xml 9 Sep 2004 04:17:03 -0000 1.397 +++ build.xml 9 Sep 2004 04:33:07 -0000 1.398 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.397 2004/09/09 04:17:03 starksm Exp $ --> +<!-- $Id: build.xml,v 1.398 2004/09/09 04:33:07 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4327,12 +4327,9 @@ <target name="_jars-jsr77"> <mkdir dir="${build.lib}"/> - <!-- build jsr77-test.jar --> - <jar jarfile="${build.lib}/jsr77-test.jar"> - <fileset dir="${build.classes}"> - <include name="org/jboss/test/management/**"/> - </fileset> - </jar> + <!-- Copy the ejb connector --> + <copy file="${jboss.management.lib}/ejb-management.jar" + todir="${build.lib}"/> </target> <!-- load test --> |