Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: plexus-compiler
-
Labels:None
-
Environment:version 1.8.1
-
Number of attachments :
Description
The verbose flag is not set for the JDT CompilerOptions object. There is no constant in CompilerOptions for it and the constructor does not take it from the passed 'settings' map. But it is a public field and can be set right after instantiating the CompilerOptions object.
Change the code in EclipseJavaCompiler.java as follows:
CompilerOptions options = new CompilerOptions( settings );
options.verbose = config.isVerbose();