|
From: Scott M S. <st...@us...> - 2003-08-24 01:42:36
|
User: starksm
Date: 03/08/23 18:42:34
Modified: . Tag: Branch_3_2 build.xml
Log:
Add a test of a jsp page accessing classes outside of the war referenced
through the war manifest classpath.
Revision Changes Path
No revision
No revision
1.165.2.94 +22 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.93
retrieving revision 1.165.2.94
diff -u -r1.165.2.93 -r1.165.2.94
--- build.xml 18 Aug 2003 23:21:58 -0000 1.165.2.93
+++ build.xml 24 Aug 2003 01:42:34 -0000 1.165.2.94
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.93 2003/08/18 23:21:58 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.94 2003/08/24 01:42:34 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2768,6 +2768,27 @@
</fileset>
</jar>
+ <!-- Build manifest-web.war -->
+ <manifest file="${build.resources}/manifest-web.mf">
+ <attribute name="Class-Path" value="jbosstest-web-util.jar"/>
+ </manifest>
+ <war warfile="${build.lib}/manifest-web.war"
+ manifest="${build.resources}/manifest-web.mf"
+ webxml="${build.resources}/web/WEB-INF/manifest-web.xml">
+ <fileset dir="${build.resources}/web/html/manifest">
+ <include name="**/*.jsp"/>
+ </fileset>
+ <fileset dir="${build.lib}">
+ <include name="jbosstest-web-util.jar" />
+ </fileset>
+ </war>
+ <ear earfile="${build.lib}/manifest-web.ear"
+ appxml="${build.resources}/web/META-INF/application-mf.xml">
+ <fileset dir="${build.lib}">
+ <include name="manifest-web.war"/>
+ <include name="jbosstest-web-util.jar"/>
+ </fileset>
+ </ear>
<!-- build root-web.war -->
<war warfile="${build.lib}/root-web.war"
|