User: starksm
Date: 01/10/30 21:49:43
Modified: varia build.xml
Log:
Add a boot-servlet.war creation step
Revision Changes Path
1.11 +32 -1 contrib/varia/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/contrib/varia/build.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- build.xml 2001/10/13 18:54:50 1.10
+++ build.xml 2001/10/31 05:49:42 1.11
@@ -10,7 +10,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.10 2001/10/13 18:54:50 peter_f Exp $ -->
+<!-- $Id: build.xml,v 1.11 2001/10/31 05:49:42 starksm Exp $ -->
<project default="main" name="JBoss Plugins/Varia">
@@ -194,6 +194,13 @@
<pathelement path="${sun.jts.lib}/jts.jar"/>
</path>
+ <!-- Java Servlets -->
+ <property name="sun.servlet.root" value="${project.thirdparty}/sun/servlet"/>
+ <property name="sun.servlet.lib" value="${sun.servlet.root}/lib"/>
+ <path id="sun.servlet.classpath">
+ <pathelement path="${sun.servlet.lib}/servlet.jar"/>
+ </path>
+
<!-- Log4j -->
<property name="apache.log4j.root" value="${project.thirdparty}/apache/log4j"/>
<property name="apache.log4j.lib" value="${apache.log4j.root}/lib"/>
@@ -201,6 +208,13 @@
<pathelement path="${apache.log4j.lib}/log4j.jar"/>
</path>
+ <!-- GNU Regex -->
+ <property name="gnu.regexp.root" value="${project.thirdparty}/gnu/regexp"/>
+ <property name="gnu.regexp.lib" value="${gnu.regexp.root}/lib"/>
+ <path id="gnu.regexp.classpath">
+ <pathelement path="${gnu.regexp.lib}/gnu-regexp.jar"/>
+ </path>
+
<!-- EDU.oswego.cs.dl.util.concurrent -->
<property name="oswego.concurrent.root"
value="${project.thirdparty}/oswego/concurrent"/>
<property name="oswego.concurrent.lib" value="${oswego.concurrent.root}/lib"/>
@@ -259,7 +273,9 @@
<path refid="sun.jaxp.classpath"/>
<path refid="sun.jaas.classpath"/>
<path refid="sun.jts.classpath"/>
+ <path refid="sun.servlet.classpath"/>
<path refid="apache.log4j.classpath"/>
+ <path refid="gnu.regexp.classpath"/>
<path refid="junit.junit.classpath"/>
<path refid="hsqldb.hsqldb.classpath"/>
<path refid="enhydra.instantdb.classpath"/>
@@ -461,6 +477,21 @@
<include name="org/jboss/jdbc/InstantDB**"/>
</fileset>
</jar>
+
+ <!-- Build boot-servlet.war -->
+ <war warfile="${build.lib}/boot-servlet.war"
+ webxml="${source.resources}/boot/web.xml">
+ <fileset dir="${source.resources}/boot">
+ <include name="*.xsl"/>
+ </fileset>
+ <classes dir="${build.classes}">
+ <include name="org/jboss/boot/**"/>
+ </classes>
+ <lib dir="${project.thirdparty}">
+ <include name="sun/jaxp/lib/xalan.jar"/>
+ </lib>
+ </war>
+
</target>
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development