|
From: Adrian B. <ej...@us...> - 2003-05-27 18:34:28
|
User: ejort
Date: 03/05/27 11:34:27
Modified: . build.xml
Log:
Tests for the classpath extension bean
Revision Changes Path
1.264 +11 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.263
retrieving revision 1.264
diff -u -r1.263 -r1.264
--- build.xml 26 May 2003 15:38:38 -0000 1.263
+++ build.xml 27 May 2003 18:34:27 -0000 1.264
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.263 2003/05/26 15:38:38 cgjung Exp $ -->
+<!-- $Id: build.xml,v 1.264 2003/05/27 18:34:27 ejort Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -3285,6 +3285,16 @@
<metainf dir="${source.resources}/classloader/heirarchicalresource" />
<fileset dir="${build.lib}">
<include name="loadingresource.sar"/>
+ </fileset>
+ </jar>
+
+ <!-- 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>
|