|
From: Christian R. <lq...@us...> - 2002-12-09 17:59:45
|
User: lqd
Date: 02/12/09 09:59:44
Modified: . build.xml
Log:
- add a testcase for lookup of a Bean that is specified by a relative
<ejb-link> target in the ENC of the servlet, i.e. something in the
form of <ejb-link>path/to/file.jar#SampleBean</ejb-link>
Revision Changes Path
1.201 +14 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- build.xml 9 Dec 2002 01:47:49 -0000 1.200
+++ build.xml 9 Dec 2002 17:59:43 -0000 1.201
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.200 2002/12/09 01:47:49 d_jencks Exp $ -->
+<!-- $Id: build.xml,v 1.201 2002/12/09 17:59:43 lqd Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -2263,6 +2263,18 @@
</fileset>
</jar>
+ <!-- build websubdir/relative.jar -->
+ <mkdir dir="${build.lib}/websubdir"/>
+ <jar jarfile="${build.lib}/websubdir/relative.jar">
+ <fileset dir="${build.resources}/web/websubdir">
+ <include name="**/*.xml"/>
+ </fileset>
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/web/ejb/StatelessSessionBean.class"/>
+ <include name="org/jboss/test/web/interfaces/StatelessSession*.class"/>
+ </fileset>
+ </jar>
+
<!-- build root-web.war -->
<war warfile="${build.lib}/root-web.war"
webxml="${build.resources}/web/WEB-INF/root-web.xml">
@@ -2319,6 +2331,7 @@
<include name="jbosstest-web.war"/>
<include name="notjbosstest-web.war"/>
<include name="cts.jar"/>
+ <include name="websubdir/relative.jar"/>
</fileset>
</ear>
</target>
|