Hi,
> Thank you for the reply.
>
> But I do not have reference to it in any of the other pom files of my
> application.
>
> In case there is an implicit reference- how would I identify it?
Have you tried "mvn -e -X ..."? Perhaps this will already give you the answer
where the snapshot version is referenced...
> If identified, how can I force it use the correct version?
You can configure the plugin version to use in your pom.xml. Example:
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
HTH
Thorsten
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]