From: Adrian B. <ej...@us...> - 2003-05-22 01:38:19
|
User: ejort Date: 03/05/21 18:38:18 Modified: . Tag: Branch_3_2 build.xml Log: Port the classpath mbean test from 3.0 Revision Changes Path No revision No revision 1.165.2.70 +11 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.69 retrieving revision 1.165.2.70 diff -u -r1.165.2.69 -r1.165.2.70 --- build.xml 20 May 2003 00:18:28 -0000 1.165.2.69 +++ build.xml 22 May 2003 01:38:17 -0000 1.165.2.70 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.69 2003/05/20 00:18:28 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.70 2003/05/22 01:38:17 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3715,6 +3715,16 @@ <include name="log4j.properties"/> </classes> </war> + + <!-- build classpath.sar --> + <jar jarfile="${build.lib}/classpath.sar"> + <metainf dir="${source.resources}/classloader/classpath"> + <include name="jboss-service.xml" /> + </metainf> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/classpath/**"/> + </fileset> + </jar> </target> <!-- entity test --> |