|
From: Adrian B. <ej...@us...> - 2004-09-08 13:25:35
|
User: ejort
Date: 04/09/08 06:25:28
Modified: . build.xml
Log:
Build isolationC.ear
Revision Changes Path
1.395 +29 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.394
retrieving revision 1.395
diff -u -r1.394 -r1.395
--- build.xml 31 Aug 2004 16:23:43 -0000 1.394
+++ build.xml 8 Sep 2004 13:25:28 -0000 1.395
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.394 2004/08/31 16:23:43 loubyansky Exp $ -->
+<!-- $Id: build.xml,v 1.395 2004/09/08 13:25:28 ejort Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -3306,6 +3306,34 @@
</fileset>
</jar>
+ <!-- build isolationC.war -->
+ <war warfile="${build.lib}/isolationC.war"
+ webxml="${build.resources}/isolation/c/war/WEB-INF/web.xml">
+ <webinf dir="${build.resources}/isolation/c/war">
+ <include name="WEB-INF/*.xml"/>
+ <exclude name="WEB-INF/web.xml"/>
+ </webinf>
+ <classes dir="${build.classes}">
+ <include name="org/jboss/test/isolation/web/c/**"/>
+ </classes>
+ <classes dir="${build.resources}/isolation/c/war/WEB-INF/classes">
+ <include name="**/*"/>
+ </classes>
+ <lib dir="${apache.log4j.lib}">
+ <include name="log4j.jar"/>
+ </lib>
+ </war>
+
+ <!-- build isolationC.ear -->
+ <jar jarfile="${build.lib}/isolationC.ear">
+ <fileset dir="${build.lib}">
+ <include name="isolationC.war"/>
+ </fileset>
+ <fileset dir="${build.resources}/isolation/c/ear">
+ <include name="META-INF/*.xml"/>
+ </fileset>
+ </jar>
+
</target>
<!-- jbossmq test -->
|