|
From: Ben W. <bw...@us...> - 2004-02-15 01:27:51
|
User: bwang00
Date: 04/02/14 17:21:03
Modified: . build.xml
Log:
Added cache specific config
Revision Changes Path
1.333 +10 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.332
retrieving revision 1.333
diff -u -r1.332 -r1.333
--- build.xml 11 Feb 2004 16:09:00 -0000 1.332
+++ build.xml 15 Feb 2004 01:21:02 -0000 1.333
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.332 2004/02/11 16:09:00 reverbel Exp $ -->
+<!-- $Id: build.xml,v 1.333 2004/02/15 01:21:02 bwang00 Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -4862,6 +4862,14 @@
<!-- cache JARs -->
<target name="_jars-cache">
+ <!-- Not much to do with jar, but ... -->
+ <mkdir dir="${build.resources}/META-INF"/>
+ <copy todir="${build.resources}/META-INF" filtering="no">
+ <fileset dir="${source.resources}/cache/META-INF">
+ <include name="local-service*.xml"/>
+ </fileset>
+ </copy>
+
<!-- build cachetest.jar -->
<jar jarfile="${build.lib}/cachetest.jar"
manifest="${build.resources}/cache/manifest.mf">
@@ -4879,7 +4887,7 @@
-->
<copy file="${build.resources}/cache/META-INF/tree-service.xml"
tofile="${build.resources}/cache/META-INF/jboss-service.xml"/>
-
+
<jar jarfile="${build.lib}/cachetest.sar">
<fileset dir="${jboss.cache.lib}">
<include name="jboss-cache.jar"/>
|