From: Ben W. <bw...@us...> - 2003-09-13 07:12:36
|
User: bwang00 Date: 03/09/13 00:12:35 Modified: . build.xml Log: Added cache testsuite back to current jboss-head Revision Changes Path 1.291 +20 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.290 retrieving revision 1.291 diff -u -r1.290 -r1.291 --- build.xml 10 Sep 2003 00:39:29 -0000 1.290 +++ build.xml 13 Sep 2003 07:12:35 -0000 1.291 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.290 2003/09/10 00:39:29 starksm Exp $ --> +<!-- $Id: build.xml,v 1.291 2003/09/13 07:12:35 bwang00 Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -98,6 +98,7 @@ <path refid="junitejb.junitejb.classpath"/> <path refid="junitejb.junitejb.classpath"/> <path refid="jdom.classpath"/> + <path refid="javagroups.javagroups.classpath"/> <!-- needed for JBossMQ selector tests --> <path refid="gnu.regexp.classpath"/> @@ -141,6 +142,7 @@ <path refid="jboss.aop.classpath"/> <path refid="jboss.aspects.classpath"/> <path refid="jboss.remoting.classpath"/> + <path refid="jboss.cache.classpath"/> </path> @@ -932,6 +934,23 @@ <jbossaop/> </aopdoclet> --> + + <!-- cache test --> + <mkdir dir="${build.resources}/cache/META-INF"/> + <ejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/cache/bean/*Bean.java"/> + </fileset> + <remoteinterface/> + <homeinterface/> + <deploymentdescriptor xmlencoding="UTF-8" + destdir="${build.resources}/cache/META-INF"/> + <jboss xmlencoding="UTF-8" + version="3.0" + destdir="${build.resources}/cache/META-INF"/> + </ejbdoclet> </target> <target name="compile-mbean-sources" depends="init" unless="noxdoclet"> |