<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]

Reply via email to