glenn 01/07/08 07:23:49
Modified: regexp build.xml
Log:
Install jakarta-oro-2 jar in examples web app
Revision Changes Path
1.9 +6 -0 jakarta-taglibs/regexp/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-taglibs/regexp/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 2001/07/02 11:46:09 1.8
+++ build.xml 2001/07/08 14:23:49 1.9
@@ -10,12 +10,18 @@
<property name="classpath" value="${servlet.jar}:${jakarta-oro2.jar}"/>
<property name="checkRequirements.pre" value="checkRequirements.pre"/>
+ <property name="examples.pre" value="examples.pre"/>
<target name="checkRequirements.pre">
<antcall target="checkRequiredFile">
<param name="file" value="${jakarta-oro2.jar}"/>
<param name="fail.message" value="a jar file containing the jakarta-oro-2
classes is required to compile the regexp taglib. please define the property
jakarta-oro2.jar in your build.properties file and ensure that the file exists"/>
</antcall>
+ </target>
+
+ <target name="examples.pre">
+ <copy file="${jakarta-oro2.jar}"
+ todir="${build.examples}/WEB-INF/lib"/>
</target>
&common;