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.

[EMAIL PROTECTED] wrote:
> <zip> wants a resource collection and <zipfileset> is one. <fileset> and 
> <path> are other.
>
> Jan 
>
> -----Ursprüngliche Nachricht-----
> Von: Noel Grandin [mailto:[EMAIL PROTECTED] 
> Gesendet: Mittwoch, 3. September 2008 11:29
> An: user@ant.apache.org
> 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: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>   


Disclaimer: http://www.peralex.com/disclaimer.html



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to