|
From: Scott M S. <st...@us...> - 2003-06-02 11:28:30
|
User: starksm
Date: 03/06/02 04:28:29
Modified: . Tag: Branch_3_2 build.xml
Log:
Include a resources.jar in the jbosstest-web.war
Revision Changes Path
No revision
No revision
1.165.2.73 +7 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.72
retrieving revision 1.165.2.73
diff -u -r1.165.2.72 -r1.165.2.73
--- build.xml 30 May 2003 13:40:38 -0000 1.165.2.72
+++ build.xml 2 Jun 2003 11:28:28 -0000 1.165.2.73
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.72 2003/05/30 13:40:38 slaboure Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.73 2003/06/02 11:28:28 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2879,6 +2879,10 @@
</war>
<!-- build jbosstest-web.war -->
+ <jar destfile="${build.lib}/resources.jar">
+ <zipfileset dir="${build.resources}/web/html/jbosstest"
+ prefix="org/jboss/resources" includes="JBoss.properties" />
+ </jar>
<war warfile="${build.lib}/jbosstest-web.war"
webxml="${build.resources}/web/WEB-INF/jbosstest-web.xml">
<webinf dir="${build.resources}/web/html/jbosstest/WEB-INF">
@@ -2886,6 +2890,7 @@
</webinf>
<lib dir="${build.lib}">
<include name="jbosstest-web-util.jar"/>
+ <include name="resources.jar" />
</lib>
<classes dir="${build.classes}">
<!-- -->
@@ -3713,7 +3718,7 @@
<include name="*.jar"/>
</lib>
<classes dir="${build.classes}">
- <include name="org/jboss/test/classloader/scoping/override/web/log4j113/*"/>
+ <include name="org/jboss/test/classloader/scoping/override/web/**"/>
</classes>
<classes dir="${build.resources}/classloader/scoping/override/log4j113">
<include name="log4j.properties"/>
|