What latest version of build-helper-maven-plugin requires JDK 1.6?

The latest version of the Build Helper Maven plugin ( 1.10 ) requires Java 1.7 , which violated my build. On the plugin's documentation page , only the version of the Java version for the latest version is displayed.

+6
source share
1 answer

Looking at Plug Helper Maven versions, here

  • version 1.9.1 points to the parent POM org.codehaus.mojo.mojo-parent version 33 , which still sets its Java target to 1.5 (via the mojo.java.target property).

  • version 1.10 points to the parent POM org.codehaus.mojo.mojo-parent version 38 , which sets its Java target to 1.7

Therefore, Build Helper Maven Plugin 1.9.1 is the latest version compatible with Java 6 . Starting with this version, Java 7 is the default target.

+10
source

All Articles