You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@depot.apache.org by Nick Chalko <ni...@chalko.com> on 2004/02/12 08:08:15 UTC

Ruper Fileset

This is what I have in mind for ruper filesets. 
<project name="ruperModule-test" basedir="." default="test1">
    <typedef resource="org/apache/ruper/ant/antlib.xml"/>
    <target name="test1">
        <repository id="maven"
                    url="http://www.ibiblio.org/maven/"
                    remote="true" />
        <ruperset id="test1">
            <resource name="log4j" version="1.2" repository="maven"/>
        </ruperset>
        <copy toDir="build/test/sandbox">
            <fileset refid="test1"/>
        </copy>
    </target>
    <target name="test2">
        <ruperFileSet id="foo">
            <project name="tomcat" version="4" 
module="http://gump.apache.org/modules/xalan.xml"/>
        </ruperFileSet>
    </target>
    <target name="test3"/>
</project>


Does this seem like reasonable ant tasks.