|
From: Adrian B. <ej...@us...> - 2003-05-21 20:40:57
|
User: ejort
Date: 03/05/21 13:40:56
Modified: . Tag: Branch_3_0 build.xml
Log:
Add a test for the classpath mbean
Revision Changes Path
No revision
No revision
1.106.2.72 +11 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.106.2.71
retrieving revision 1.106.2.72
diff -u -r1.106.2.71 -r1.106.2.72
--- build.xml 22 Apr 2003 00:38:24 -0000 1.106.2.71
+++ build.xml 21 May 2003 20:40:54 -0000 1.106.2.72
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.106.2.71 2003/04/22 00:38:24 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.106.2.72 2003/05/21 20:40:54 ejort Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2937,7 +2937,16 @@
<include name="loadingresource.sar" />
</fileset>
</ear>
- </target>
+
+ <!-- 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 -->
<target name="_jars-entity">
|