Apache Maven Compiler Plugin Version 3.8.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Compiler Plugin, version 3.8.0.

The Compiler Plugin is used to compile the sources of your project.

Important Notes since Version 3.8.0

  • The default value for source/target has been lifted from 1.5 to 1.6 see MCOMPILER-335.

You should specify the version in your project's plugin configuration:

1<plugin>
2  <groupId>org.apache.maven.plugins</groupId>
3  <artifactId>maven-compiler-plugin</artifactId>
4  <version>3.8.0</version>
5</plugin>

Release Notes - Maven Compiler Plugin - Version 3.8.0

Bugs:

Improvements:

  • MCOMPILER-313 - Support mrjar dependency with module descriptor only in META-INF/versions/x
  • MCOMPILER-323 - Support multi-release jars
  • MCOMPILER-335 - Update default source/target from 1.5 to 1.6
  • MCOMPILER-341 - Compile module-info.java files located in test sources

Tasks:

Dependency upgrades:

Enjoy,

-The Apache Maven team