|
From: Scott M S. <st...@us...> - 2003-04-30 00:08:01
|
User: starksm
Date: 03/04/29 17:08:00
Modified: . Tag: Branch_3_2 build.xml
Log:
Update for the user2-xmbean.sar target
Revision Changes Path
No revision
No revision
1.165.2.61 +15 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.60
retrieving revision 1.165.2.61
diff -u -r1.165.2.60 -r1.165.2.61
--- build.xml 27 Apr 2003 22:12:38 -0000 1.165.2.60
+++ build.xml 30 Apr 2003 00:07:58 -0000 1.165.2.61
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.60 2003/04/27 22:12:38 jboynes Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.61 2003/04/30 00:07:58 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2204,9 +2204,22 @@
<include name="org/jboss/test/jmx/xmbean/*.class"/>
</fileset>
<fileset dir="${build.resources}/jmx/xmbean">
- <include name="**/*.xml"/>
+ <include name="**/User.xml"/>
+ </fileset>
+ </jar>
+
+ <!--xmbean persistence tests -->
+ <jar jarfile="${build.lib}/user2-xmbean.sar">
+ <metainf dir="${build.resources}/jmx/xmbean/user2" />
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/jmx/xmbean/User2.class"/>
</fileset>
</jar>
+ <copy todir="${build.lib}">
+ <fileset dir="${build.resources}/jmx/xmbean">
+ <include name="RemoveUser2Store.bsh"/>
+ </fileset>
+ </copy>
<!-- Tests of xmbeans with custom interceptors -->
<jar jarfile="${build.lib}/interceptors-xmbean.sar">
|