|
From: David J. <d_j...@us...> - 2003-04-24 17:42:35
|
User: d_jencks
Date: 03/04/24 10:42:33
Modified: . build.xml
Log:
Restore exception tests to working status. They use xdoclet to include the EJBTestRunner bean config directly, so the reference to the blocks source code is needed
Revision Changes Path
1.242 +5 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.241
retrieving revision 1.242
diff -u -r1.241 -r1.242
--- build.xml 22 Apr 2003 09:16:20 -0000 1.241
+++ build.xml 24 Apr 2003 17:42:31 -0000 1.242
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.241 2003/04/22 09:16:20 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.242 2003/04/24 17:42:31 d_jencks Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -671,7 +671,10 @@
excludedtags="@version,@author">
<fileset dir="${source.java}">
<include name="org/jboss/test/exception/*Bean.java"/>
- </fileset>
+ </fileset>
+ <fileset dir="${jboss.blocks.source.java}">
+ <include name="org/jboss/blocks/junit/ejb/EJBTestRunnerBean.java"/>
+ </fileset>
<!--packageSubstitution packages="beans" substituteWith="interfaces"/-->
<remoteinterface/>
<localinterface/>
|