rwaldhoff 01/11/12 16:32:02
Modified: httpclient build.xml
Log:
adding mkdir to compile.test-webapp target to create the webapp destination if it
doesn't already exist.
Revision Changes Path
1.10 +2 -1 jakarta-commons/httpclient/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/httpclient/build.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- build.xml 2001/10/06 01:07:15 1.9
+++ build.xml 2001/11/13 00:32:02 1.10
@@ -1,7 +1,7 @@
<project name="HTTP Client" default="compile" basedir=".">
<!--
"HTTP Client" component of the Jakarta Commons Subproject
- $Id: build.xml,v 1.9 2001/10/06 01:07:15 rwaldhoff Exp $
+ $Id: build.xml,v 1.10 2001/11/13 00:32:02 rwaldhoff Exp $
-->
<!-- ========== Properties: Property Files =============================== -->
@@ -217,6 +217,7 @@
<target name="compile.test-webapp"
description="Compile test webapp used by unit tests">
+ <mkdir
dir="${test-webapp.dest}/${httpclient.test.webappContext}/WEB-INF/classes"/>
<javac srcdir ="${test-webapp.source.home}"
destdir
="${test-webapp.dest}/${httpclient.test.webappContext}/WEB-INF/classes"
debug ="${compile.debug}"
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>