You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by robert burrell donkin <ro...@blueyonder.co.uk> on 2003/06/01 11:12:35 UTC

Re: [fileupload] [proposal] lib property in build.xml

that sounds fine. please supply a patch against CVS HEAD (see http://http:
//jakarta.apache.org/commons/patches.html for more details).

- robert

On Friday, May 30, 2003, at 09:13 AM, Arnaud Vandyck wrote:

> Hi all,
>
> I  am  working  on  packaging  fileupload to  Debian.  Because  of  some
> requierments in Debian, I have to specify the CLASSPATH my self (or tell
> to  ant where  it is).  But I  do  not have  any lib  directory, so  ant
> craches.  I've  been  obliged   to  comment  the  additionnal  classpath
> information in the javac task.
>
> My  proposal is  to  change the  reference  to the  lib  directory to  a
> reference to a property so I can override it from my ant call.
>
> Thanks for your time,
>
> -- Arnaud Vandyck, STE fi, ULg
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: commons-dev-help@jakarta.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


Re: [patch] [fileupload] [proposal] lib property in build.xml

Posted by Arnaud Vandyck <Ar...@ulg.ac.be>.
<citation de="John McNally">
> Is there any reason you are only changing one use of the lib
> directory?

absent-minded :-p

I now replaced all the occurences.

-- 
arnaud @ somewhere


Re: [patch] [fileupload] [proposal] lib property in build.xml

Posted by John McNally <jm...@collab.net>.
Is there any reason you are only changing one use of the lib directory? 
john mcnally

On Sun, 2003-06-01 at 14:13, Arnaud Vandyck wrote:
> robert burrell donkin <ro...@blueyonder.co.uk> wrote:
> > that  sounds  fine.  please  supply  a patch  against  CVS  HEAD  (see
> > http://jakarta.apache.org/commons/patches.html for more details).
> 
> done ;-)
> 
> > On Friday, May 30, 2003, at 09:13 AM, Arnaud Vandyck wrote:
> > 
> > > Hi all,
> > >
> > > I am  working on  packaging fileupload to  Debian.  Because  of some
> > > requierments in Debian, I have  to specify the CLASSPATH my self (or
> > > tell to ant where  it is).  But I do not have  any lib directory, so
> > > ant craches.  I've been obliged to comment the additionnal classpath
> > > information in the javac task.
> > >
> > > My proposal  is to change  the reference to  the lib directory  to a
> > > reference to a property so I can override it from my ant call.
> > >
> > > Thanks for your time,
> 
> -- Arnaud Vandyck, STE fi, ULg
> ----
> 

> Index: build.xml
> ===================================================================
> RCS file: /home/cvspublic/jakarta-commons/fileupload/build.xml,v
> retrieving revision 1.5
> diff -u -r1.5 build.xml
> --- build.xml	27 Oct 2002 18:47:51 -0000	1.5
> +++ build.xml	1 Jun 2003 21:10:03 -0000
> @@ -9,6 +9,7 @@
>    <property name="distdir" value="dist"></property>
>    <property name="javadocdir" value="target/docs/apidocs"></property>
>    <property name="final.name" value="commons-fileupload-1.0-dev"></property>
> +  <property name="lib" value="lib"></property>
>  
>    <!-- The test runner to execute -->
>    <property name="test.runner"             value="junit.textui.TestRunner"/>
> @@ -34,7 +35,7 @@
>          <pathelement location="src/java"></pathelement>
>        </src>
>        <classpath>
> -        <fileset dir="lib">
> +        <fileset dir="${lib}">
>            <include name="*.jar"></include>
>          </fileset>
>        </classpath>
> 
> ----
> 

> ---------------------------------------------------------------------
> To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: commons-dev-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


[patch] [fileupload] [proposal] lib property in build.xml

Posted by Arnaud Vandyck <ar...@ulg.ac.be>.
robert burrell donkin <ro...@blueyonder.co.uk> wrote:
> that  sounds  fine.  please  supply  a patch  against  CVS  HEAD  (see
> http://jakarta.apache.org/commons/patches.html for more details).

done ;-)

> On Friday, May 30, 2003, at 09:13 AM, Arnaud Vandyck wrote:
> 
> > Hi all,
> >
> > I am  working on  packaging fileupload to  Debian.  Because  of some
> > requierments in Debian, I have  to specify the CLASSPATH my self (or
> > tell to ant where  it is).  But I do not have  any lib directory, so
> > ant craches.  I've been obliged to comment the additionnal classpath
> > information in the javac task.
> >
> > My proposal  is to change  the reference to  the lib directory  to a
> > reference to a property so I can override it from my ant call.
> >
> > Thanks for your time,

-- Arnaud Vandyck, STE fi, ULg