Author Login
Post Reply
I dont know if that works, but you could try
<zip><zipgroupfileset id="tozip">....
<javac classpathref="tozip"/>
Jan
-----Ursprüngliche Nachricht-----
Von: Noel Grandin [mailto:noel@(protected)]
Gesendet: Mittwoch, 3. September 2008 14:21
An: Ant Users List
Betreff: Re: AW: using a <filelist> for both <javac> and <zip> ???
Hi
Thanks, but that doesn't work.
What I want is to define a list of JAR files in one place, and use that
list of JAR files both as input to the <javac> task, and also to merge
that list of JAR files into one big jar.
For the first situation I need the list to be treated as files, and in
the second situation I need to list to be treated as a collection of
archives to be extracted.
Regards, Noel.
Jan.Materne@(protected):
> <zip> wants a resource collection and <zipfileset> is one. <fileset> and <path> are other.
>
> Jan
>
> -----Ursprüngliche Nachricht-----
> Von: Noel Grandin [mailto:noel@(protected)]
> Gesendet: Mittwoch, 3. September 2008 11:29
> An: user@(protected)
> Betreff: using a <filelist> for both <javac> and <zip> ???
>
> Hi
>
> I want to do something like this,
> but I can't seem to find any way to express this in ANT's standard
> constructs,
> since
> <javac> wants a normal <fileset> or <filelist>
> while
> <zip> really wants a <zipfileset>
>
> Thanks, Noel.
>
> <!-- using filelist because I need the order to stay consistent -->
> <filelist dir="V:\" id="peralex.libs">
> <file name="Peralex\PDFSLibs.jar" />
> <file name="Peralex\PeralexLibs.jar" />
> </filelist>
>
> <!-- compile my code -->
> <javac debug="on" destdir="${BuildClassDir}">
> <src path="${BuildSrcDir}" />
> <classpath>
> <filelist refid="peralex.libs" />
> </classpath>
> </javac>
>
> <!-- merge all of the various code related files into one big JAR -->
> <zip destfile="proguard_input.jar" duplicate="preserve">
> <zipgroupfileset refid="peralex.libs"/>
> </zip>
>
>
> Disclaimer: http://www.peralex.com/disclaimer.html
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>
>
Disclaimer: http://www.peralex.com/disclaimer.html
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)