|
From: Scott M S. <st...@us...> - 2003-01-18 11:50:33
|
User: starksm
Date: 03/01/18 03:50:32
Modified: . Tag: Branch_3_0 build.xml
Log:
Place the loadingresource.sar in an ear and add a test of accessing resources
from the ear root
Revision Changes Path
No revision
No revision
1.106.2.62 +17 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.106.2.61
retrieving revision 1.106.2.62
diff -u -r1.106.2.61 -r1.106.2.62
--- build.xml 6 Jan 2003 10:03:06 -0000 1.106.2.61
+++ build.xml 18 Jan 2003 11:50:31 -0000 1.106.2.62
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.106.2.61 2003/01/06 10:03:06 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.106.2.62 2003/01/18 11:50:31 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2864,11 +2864,26 @@
<!-- build loadingresource.sar -->
<jar jarfile="${build.lib}/loadingresource.sar">
- <metainf dir="${source.resources}/classloader/resource" />
+ <metainf dir="${source.resources}/classloader/resource">
+ <include name="jboss-service.xml" />
+ </metainf>
<fileset dir="${build.classes}">
<include name="org/jboss/test/classloader/resource/**"/>
</fileset>
</jar>
+
+ <ear earfile="${build.lib}/loadingresource.ear"
+ appxml="${build.resources}/classloader/resource/application.xml">
+ <metainf dir="${build.resources}/classloader/resource">
+ <include name="jboss-app.xml" />
+ </metainf>
+ <fileset dir="${build.resources}/classloader/resource">
+ <include name="dtds/*" />
+ </fileset>
+ <fileset dir="${build.lib}">
+ <include name="loadingresource.sar" />
+ </fileset>
+ </ear>
</target>
<!-- entity test -->
|