In my build.xml, I have the following (outside of any targets):

    <typedef resource="org/apache/maven/artifact/ant/antlib.xml"
uri="urn:maven-artifact-ant">
        <classpath>
            <pathelement
location="${basedir}/lib/maven-artifact-ant-2.0-beta-3-dep.jar" />
        </classpath>
    </typedef>

    <artifact:pom file="pom.xml" id="maven.project"/>

    <artifact:dependencies pathId="compile.classpath"
filesetId="compile.fileset" useScope="compile">
        <pom refid="maven.project"/>
    </artifact:dependencies>

    <artifact:dependencies pathId="test.classpath"
filesetId="test.fileset" useScope="test">
        <pom refid="maven.project"/>
    </artifact:dependencies>

    <artifact:dependencies pathId="runtime.classpath"
filesetId="runtime.fileset" useScope="runtime">
        <pom refid="maven.project"/>
    </artifact:dependencies>

When I run any targets in my project, I get the following:

[artifact:dependencies] Resolving dependencies...
[artifact:dependencies] Resolving dependencies...
[artifact:dependencies] Resolving dependencies...

Is it possible to supress these messages?

Thanks,

Matt

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

Reply via email to