Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a fileset which contains a number of jars of which I only want a subset. I'm currently doing this:

<target name="work-around">
    <delete dir="${dir.deps}" failonerror="false" />
    <copy todir="${dir.deps}" flatten="true">
      <restrict>
        <fileset refid="mvn.deps.fileset" />
        <rsel:name name="**/mycompany-core*.jar" />
      </restrict>
    </copy>
</target>

<target name="dist" depends="work-around">
    <zip destfile="${dir.dist}/whizbang.zip">
        <zipfileset dir="${dir.deps}" prefix="deps" />        
    </zip>
</target>

Is there a way to do this without the copy? I'm thinking that I can create some type of virtual fileset which has the restriction, then refer to it as a refid in . Note I'm also flattening things, which may make it harder/impossible.

share|improve this question

1 Answer

< zipfileset exclude="excludeddir or file..."
share|improve this answer
I didn't see a flatten arg to zipfileset. Note that's also happening in my copy. I could be blind here. I feel like I've hit a wall on this whole thing. – trenton Aug 19 '09 at 19:01
I'm not sure I'm following. Is the exclude argument working for you ? - What do you mean by flatten argument ? - "that's also happening in my copy" what's also happening... Id be glad to help but I don't understand what you're saying... – Philippe Carriere Aug 20 '09 at 4:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.