Hi,

One of the main advantage of Maven is its uniform build system that uses
centrally located plugins. In our development environment, we have base POM
where all plugin versions are explicitly mentioned as below example.

<plugin>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>2.3.1</version>
</plugin>

But, there is latest version of this plugin 2.3.2 available which we didnt
notice. What is the best practice to make sure our build system using latest
stable plugins apart from manually upgrading versions in some common base
POM?

Thanks,
Prashant

Reply via email to