Apache Maven Compiler Plugin Version 3.7.0 Released

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

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

Attention: Starting with version 3.5, the maven-compiler-plugin requires Maven 3 and won't work with Maven 2 anymore.

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.7.0</version>
5</plugin>

Release Notes - Maven Compiler Plugin - Version 3.7.0

Bugs:

  • MCOMPILER-289 - Comments in module-info.java break test compile due to parser issue
  • MCOMPILER-303 - Failure of a build with JDK 9

Improvements:

New Feature:

Enjoy,

-The Apache Maven team