From: Ben W. <bw...@us...> - 2003-06-08 09:37:47
|
User: bwang00 Date: 03/06/08 02:37:46 Modified: . build.xml Log: Added cachetest.sar to test tree cache with JBoss tm Revision Changes Path 1.270 +9 -5 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.269 retrieving revision 1.270 diff -u -r1.269 -r1.270 --- build.xml 4 Jun 2003 15:58:38 -0000 1.269 +++ build.xml 8 Jun 2003 09:37:45 -0000 1.270 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.269 2003/06/04 15:58:38 loubyansky Exp $ --> +<!-- $Id: build.xml,v 1.270 2003/06/08 09:37:45 bwang00 Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2474,14 +2474,18 @@ <!-- build cachetest.sar --> <!-- + --> + <copy file="${build.resources}/cache/META-INF/transient-cache-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="**/repl-sync-cache-service.xml"/> - <include name="**/*-aop.xml"/> + <include name="**/jboss-service.xml"/> </fileset> - <metainf dir="${build.resources}/cache/bean/META-INF/"/> </jar> - --> <!-- build cachetest.aop --> <jar jarfile="${build.lib}/cachetest.aop" |