<mkdir dir="${webapp.target}/WEB-INF/lib"/>
<copy todir="${webapp.target}/WEB-INF/lib">
<fileset dir="${securityfilter.libs}" includes="commons-*.jar"/>
- <fileset dir="${securityfilter.libs}" includes="jakarta-regexp.jar"/>
+ <fileset dir="${securityfilter.libs}" includes="jakarta-oro.jar"/>
<fileset dir="${securityfilter.libs}" includes="securityfilter.jar"/>
</copy>
</target>
# rename this file to "build.properties" in the same directory that contains
# the Security Filter "build.xml" file.
#
-# $Id: build.properties.sample,v 1.1 2002/08/08 13:20:46 maxcooper Exp $
+# $Id: build.properties.sample,v 1.2 2002/12/17 15:11:26 maxcooper Exp $
# -----------------------------------------------------------------------------
# The catalina JAR file from version 4.0 (or later) of the Jakarta Tomcat
# from the Jakarta Commons project.
commons-logging.jar=/usr/local/commons-logging-1.0/commons-logging.jar
-# The JAR file containing version 1.2 (or later) of
-# the the Jakarta Regexp project.
-jakarta-regexp.jar=/usr/local/jakarta-regexp-1.2/jakarta-regexp-1.2.jar
+# The JAR file containing version 2.0.6 (or later) of
+# the the Jakarta ORO project.
+jakarta-oro.jar=/usr/local/jakarta-oro-2.0.6/jakarta-oro-2.0.6.jar
# The JAR file containing the Servlet API version 2.3 (or later) classes to
# compile against
of the Jakarta Commons Logging
package (version 1.0 or later).
- jakarta-regexp.jar (required). The path to the JAR file
- of the Jakarta Regexp
- package (version 1.2 or later).
+ jakarta-oro.jar (required). The path to the JAR file
+ of the Jakarta ORO
+ package (version 2.0.6 or later).
servlet.jar (required). The path to the Servlet API
classes to compile against
<property name="project.name" value="securityfilter"/>
<!-- Version of the project -->
- <property name="project.version" value="1.0-b4"/>
+ <property name="project.version" value="1.0-b5-dev"/>
<!-- ========== Derived Properties ======================================== -->
<pathelement location="${commons-collections.jar}"/>
<pathelement location="${commons-digester.jar}"/>
<pathelement location="${commons-logging.jar}"/>
- <pathelement location="${jakarta-regexp.jar}"/>
+ <pathelement location="${jakarta-oro.jar}"/>
<pathelement location="${servlet.jar}"/>
</path>
tofile="${build.home}/library/commons-digester.jar"/>
<copy file="${commons-logging.jar}"
tofile="${build.home}/library/commons-logging.jar"/>
- <copy file="${jakarta-regexp.jar}"
- tofile="${build.home}/library/jakarta-regexp.jar"/>
+ <copy file="${jakarta-oro.jar}"
+ tofile="${build.home}/library/jakarta-oro.jar"/>
</target>
<!--