|
From: Adrian B. <ej...@us...> - 2004-09-08 14:35:48
|
User: ejort
Date: 04/09/08 07:35:40
Modified: . build.xml
Log:
build shared-jndi deployments
Revision Changes Path
1.396 +21 -0 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.395
retrieving revision 1.396
diff -u -r1.395 -r1.396
--- build.xml 8 Sep 2004 13:25:28 -0000 1.395
+++ build.xml 8 Sep 2004 14:35:39 -0000 1.396
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.395 2004/09/08 13:25:28 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.396 2004/09/08 14:35:39 ejort Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2286,6 +2286,27 @@
<include name="org/jboss/test/classloader/scoping/transaction/**"/>
</fileset>
</jar>
+
+ <!-- Build the shared-jndi.war/sar -->
+ <jar destfile="${build.lib}/shared-jndi.sar">
+ <metainf dir="${build.resources}/classloader/scoping/naming/xml">
+ <include name="jboss-service.xml" />
+ </metainf>
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/classloader/scoping/naming/service/*"/>
+ </fileset>
+ </jar>
+ <war destfile="${build.lib}/shared-jndi.war"
+ webxml="${build.resources}/classloader/scoping/naming/xml/web.xml">
+ <webinf dir="${build.resources}/classloader/scoping/naming/xml">
+ <include name="jboss-web.xml" />
+ </webinf>
+ <classes dir="${build.classes}">
+ <include name="org/jboss/test/classloader/scoping/naming/service/BindValue.class"/>
+ <include name="org/jboss/test/classloader/scoping/naming/web/*"/>
+ </classes>
+ </war>
+
</target>
<target name="_jars-client">
|