|
From: Ben W. <bw...@us...> - 2003-12-13 13:41:22
|
User: bwang00
Date: 03/12/13 05:41:21
Modified: . Tag: Branch_3_2 build.xml
Log:
Bug fix for cache module
Revision Changes Path
No revision
No revision
1.165.2.125 +37 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.124
retrieving revision 1.165.2.125
diff -u -r1.165.2.124 -r1.165.2.125
--- build.xml 12 Dec 2003 05:16:17 -0000 1.165.2.124
+++ build.xml 13 Dec 2003 13:41:20 -0000 1.165.2.125
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.124 2003/12/12 05:16:17 bwang00 Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.125 2003/12/13 13:41:20 bwang00 Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -1128,6 +1128,7 @@
_jars-readahead,
_jars-xa,
_jars-jca,
+ _jars-cache,
_jars-jmx,
_jars-naming,
_jars-jbossmq,
@@ -1999,6 +2000,41 @@
</copy>
</target>
+
+
+ <target name="_jars-cache">
+ <!-- build cachetest.jar -->
+<!--
+ <jar jarfile="${build.lib}/cachetest.jar"
+ manifest="${build.resources}/cache/manifest.mf">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/cache/bean/*.class"/>
+ </fileset>
+ <metainf dir="${build.resources}/cache/META-INF/">
+ <include name="jboss.xml"/>
+ <include name="ejb-jar.xml"/>
+ </metainf>
+ </jar>
+-->
+
+ <!-- build cachetest.sar -->
+ <!--
+ -->
+<!--
+ <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"/>
+ </fileset>
+ <fileset dir="${build.resources}/cache">
+ <include name="**/jboss-service.xml"/>
+ </fileset>
+ </jar>
+-->
+
+ </target>
<!-- jmx test -->
<target name="_jars-jmx">
|