Does it handle excludes? I have projects which depend on servlet or j2ee
libraries but don't want to pack them in the application archive. I
noticed this:
<exclusion groupId="junit" artifactId="junit"/>
in the example build.xml; however, it's inside a dependency tag. Is it
intended to subtract entries from the filesetId or is it for some other
purpose? It looks a little out of place where it's at:
<dependency groupId="org.apache.maven.wagon"
artifactId="wagon-provider-test" version="1.0-alpha-2">
<exclusion groupId="junit" artifactId="junit"/>
</dependency>
If you have a doc for the ant task details which I should be looking at
let me know, but I do appreciate your help. I'm hoping to benefit from the
repository f(x) in my existing build process until m2 is ready for prime
time.
--
Kris Bravo
Corridor Software, Inc.
http://corridor-software.us
> There is a filesetId attribute you can specify on the dependencies
> task that you can later use to copy the dependencies without knowing
> anything special about the repository like its layout.
>
> <dependencies filesetId="maven.deps">
> ...
> </dependencies>
>
> <copy ... >
> <fileset refid="maven.deps" />
> </copy>
>
> - Brett
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]