Hello

The output of mvn versions:display-plugin-updates

[INFO] All plugins are using the latest versions.
[INFO]
[WARNING] The following plugins do not have their version specified:
[WARNING]   maven-clean-plugin .......................... (from
super-pom) 2.2


adding the following to the parent-pom doesn't help, adding it to the
pom itself does prevent the warning:

<plugin>
        <groupId>org.apache.maven.plugins</groupId>                     
        <artifactId>maven-clean-plugin</artifactId>
        <version>2.3</version>
</plugin>

specifying an older version in the pom (not in the parent) yields to the
correct output:

[INFO]
[INFO] The following plugin updates are available:
[INFO]   maven-clean-plugin ....................................... 2.2
-> 2.3

Cheers,
Reto

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to