Steve
Steve

Reputation: 2217

How do I know what version of a Maven plugin to use?

How do I know what version of a Maven plugin to use?

For example, where on the horrible Maven website can I find a list of versions of the compiler plugin? http://maven.apache.org/plugins/maven-compiler-plugin/

Upvotes: 2

Views: 234

Answers (2)

Ryan Stewart
Ryan Stewart

Reputation: 128829

Presumably, you're looking for the issue tracker, which shows issues, versions, changelogs, etc. On just about any of the "horrible" Maven plugin pages, you'll find a link to the issue tracker on the left side under "Project Information".

Upvotes: 3

Amir Raminfar
Amir Raminfar

Reputation: 34149

Here is what I do

  1. Go to http://mvnrepository.com
  2. Search for maven-compiler-plugin
  3. You should find the first one is the one you need. http://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin
  4. Find the one with the latest version and use that one

The above works because maven repo also has the latest plugins. Hope this helps.

Upvotes: 4

Related Questions