|
From: Bill B. <pat...@us...> - 2004-02-25 01:02:26
|
User: patriot1burke
Date: 04/02/24 16:47:53
Modified: . build.xml
Log:
support for EJB Timer service. Upmerged MadAndy's stuff and fixed a few bugs
in it.
Revision Changes Path
1.339 +38 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.338
retrieving revision 1.339
diff -u -r1.338 -r1.339
--- build.xml 18 Feb 2004 23:26:06 -0000 1.338
+++ build.xml 25 Feb 2004 00:47:52 -0000 1.339
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.338 2004/02/18 23:26:06 patriot1burke Exp $ -->
+<!-- $Id: build.xml,v 1.339 2004/02/25 00:47:52 patriot1burke Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -855,6 +855,25 @@
destdir="${build.resources}/jmx/loading/cpmanifest/META-INF"/>
</ejbdoclet>
+ <!-- EJB Timer Service Test Beans -->
+ <mkdir dir="${build.resources}/timer/META-INF"/>
+ <ejbdoclet destdir="${build.gen-src}"
+ ejbspec="2.0"
+ excludedtags="@version,@author">
+ <fileset dir="${source.java}">
+ <include name="org/jboss/test/timer/ejb/*Bean.java"/>
+ </fileset>
+ <packageSubstitution packages="ejb" substituteWith="interfaces"/>
+ <remoteinterface/>
+ <homeinterface/>
+ <deploymentdescriptor xmlencoding ="UTF-8"
+ destdir="${build.resources}/timer/META-INF"/>
+ <jboss xmlencoding="UTF-8"
+ version="3.0"
+ destdir="${build.resources}/timer/META-INF"
+ mergedir="${source.resources}/timer/"/>
+ </ejbdoclet>
+
<!-- entity test -->
<mkdir dir="${build.resources}/entity/entity/META-INF"/>
<ejbdoclet destdir="${build.gen-src}"
@@ -1324,6 +1343,7 @@
_jars-excepiiop,
_jars-txiiop,
_jars-marathon,
+ _jars-timer,
_jars-entity,
_jars-tm,
_jars-classloader,
@@ -4871,7 +4891,8 @@
<include name="META-INF/jboss-service.xml"/>
</fileset>
</jar>
- <!-- ok, we have created the loadtime jars, let us now precompile the classes for standalone test -->
+ <!-- ok, we have created the loadtime jars, let us now precompile the classes for standalone test -->
+
<taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/>
<path id="aop.task.classpath">
<path refid="javassist.classpath"/>
@@ -4937,6 +4958,21 @@
</target>
+ <!-- EJB Timer Service test -->
+ <target name="_jars-timer">
+ <!-- build session-bean-timer.jar -->
+ <jar jarfile="${build.lib}/session-bean-timer.jar">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/timer/ejb/**"/>
+ <include name="org/jboss/test/timer/interfaces/**"/>
+ <include name="META-INF/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/timer/">
+ <include name="META-INF/**"/>
+ </fileset>
+ </jar>
+ </target>
+
<!-- entity test -->
<target name="_jars-entity">
<mkdir dir="${build.lib}"/>
|