|
From: Scott M S. <st...@us...> - 2002-05-24 19:41:19
|
User: starksm
Date: 02/05/24 12:41:14
Modified: . build.xml
Log:
Add the build sets for the service resource tests deployments
Revision Changes Path
1.135 +50 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- build.xml 24 May 2002 12:12:20 -0000 1.134
+++ build.xml 24 May 2002 19:41:10 -0000 1.135
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.134 2002/05/24 12:12:20 biorn_steedom Exp $ -->
+<!-- $Id: build.xml,v 1.135 2002/05/24 19:41:10 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -1478,6 +1478,55 @@
<fileset dir="${build.resources}/jmx/mbeane">
<include name="META-INF/jboss-service.xml"/>
</fileset>
+ </jar>
+
+ <!-- ResourceTsts case#1, a sar with the classes and resources -->
+ <jar jarfile="${build.lib}/rsrc1.sar">
+ <metainf dir="${build.resources}/jmx/loading/rsrc1" />
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/jmx/loading/ResourceTsts*"/>
+ </fileset>
+ </jar>
+ <!-- ResourceTsts case#2, a sar with the resources and the
+ service in a nested jar
+ -->
+ <jar jarfile="${build.lib}/rsrcsvc.jar">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/jmx/loading/ResourceTsts*"/>
+ </fileset>
+ </jar>
+ <jar jarfile="${build.lib}/rsrc2.sar">
+ <metainf dir="${build.resources}/jmx/loading/rsrc2" />
+ <fileset dir="${build.lib}">
+ <include name="rsrcsvc.jar"/>
+ </fileset>
+ </jar>
+ <!-- ResourceTsts case#3, a jar with two sars with only
+ the service descriptor metadata and a jar containing the
+ service code.
+ -->
+ <jar jarfile="${build.lib}/rsrc31.sar">
+ <metainf dir="${build.resources}/jmx/loading/rsrc1" />
+ </jar>
+ <jar jarfile="${build.lib}/rsrc32.sar">
+ <metainf dir="${build.resources}/jmx/loading/rsrc2" />
+ </jar>
+ <jar jarfile="${build.lib}/rsrc3.jar">
+ <fileset dir="${build.lib}">
+ <include name="rsrcsvc.jar"/>
+ <include name="rsrc31.sar" />
+ <include name="rsrc32.sar" />
+ </fileset>
+ </jar>
+ <!-- ResourceTsts case#4, a sar with a service descriptor with
+ mulitiple mbeans, a resource file with multiple configs
+ using a namespace, and the service code in a nested jar
+ -->
+ <jar jarfile="${build.lib}/rsrc4.sar">
+ <metainf dir="${build.resources}/jmx/loading/rsrc4" />
+ <fileset dir="${build.lib}">
+ <include name="rsrcsvc.jar"/>
+ </fileset>
</jar>
<!--build test sar for testing local directory copy deployment -->
|