I have an update for this.
I was able to use:
    <groupId>org.apache.maven.plugins</groupId> 
                <artifactId>maven-dependency-plugin</artifactId> 
                <version>2.0-ALPHA-1-SNAPSHOT</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>unpack-dependencies</goal>
            </goals>
            <configuration>
 
<outputDirectory>${project.build.directory}/prep</outputDirectory>
              <excludeTransitive>true</excludeTransitive>
            </configuration>

The problem is it obtained not only the current pom.xml dependencies but
also the dependencies from the parent.  I though that excludeTransitive
would prevent the parent's dependencies from being obtained.  Is there a
way that I can use this plugin and only obtain the current pom.xml's
dependencies?
Thanks. 


This message (including any attachments) contains confidential information 
intended for a specific individual and purpose, and is protected by law.  If 
you are not the intended recipient, you should delete this message. 


Any disclosure, copying, or distribution of this message, or the taking of any 
action based on it, is strictly prohibited. [v.E.1]

Reply via email to