Apache Maven Compiler Plugin Version 3.2 Released
The Apache Maven team is pleased to announce the release of the Apache Maven Compiler Plugin, version 3.2
The Compiler Plugin is used to compile the sources of your project.
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.2</version>
5</plugin>
Release Notes - Maven Compiler Plugin - Version 3.2
Bugs:
- MCOMPILER-157 - Maven Compiler Plugin should add to compileSourceRoots for next plugins to consider as source directory for generated files
- MCOMPILER-224 - Maven compiler plugin does not properly consume plexus compiler output
Improvements:
- MCOMPILER-159 - generatedSourcesDirectory should be included in list provided by org.apache.maven.project.MavenProject.getCompileClasspathElements()
- MCOMPILER-232 - Fix RAT Report
Task:
- MCOMPILER-220 - Fix o.a.m.p.c.CompilerMojoTestCase.testCompilerFork(), which fails when javac is not on the PATH
Enjoy,
-The Apache Maven team