I am trying to configure a plugin with dependencies.
According to the current project descriptor document
(http://maven.apache.org/maven-model/maven.html), I should do the
following:
<project>
<build>
<plugins>
<plugin>
<groupId/>
<artifactId/>
<dependencies>
<dependency>
<groupId/>
<artifactId/>
</dependency>
</dependencies>
<configuration/>
</plugin>
</plugins>
</build>
</project>
When I do this, I get a parse error on the POM that the <dependencies>
tag within the <plugin> is unrecognized.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]