<!-- ZIP-task -->
<target name="createZIP">
<property name="build" value="bin/**"/>
<property name="dist" value="dist/**"/>
<zip destfile="${ant.project.name}.zip" basedir="."  excludes="${dist},
${build}"/>
</target> 

Michael


Wroopy wrote:
> 
> Hi!
> 
> I've problem with excludes when creating a zip file.
> I want to create a zip files containing all files in current  
> directory, but exclude two directories.
> 
> 
> <!-- ZIP-task -->
> <target name="createZIP">
> <property name="build"       location="bin"/>
> <property name="dist"        location="dist"/>
> <zip destfile="${dist}/${ant.project.name}.zip" basedir="."  
> excludes="${dist}, ${build}"/>
> </target>
> 
> /Andreas
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Problem-with-excludes-tp23775800p23778724.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to