mirror of
https://github.com/apache/maven.git
synced 2025-02-08 19:15:12 +00:00
PR: MNG-975
Submitted by: Edwin Punzalan add verbose option git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@321310 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc6092fca1
commit
fbe2d4ff4f
@ -62,6 +62,13 @@ public abstract class AbstractCompilerMojo
|
|||||||
*/
|
*/
|
||||||
private boolean debug;
|
private boolean debug;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether to output messages about what the compiler is doing
|
||||||
|
*
|
||||||
|
* @parameter default-value="false"
|
||||||
|
*/
|
||||||
|
private boolean verbose;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Output source locations where deprecated APIs are used
|
* Output source locations where deprecated APIs are used
|
||||||
*
|
*
|
||||||
@ -248,6 +255,8 @@ public void execute()
|
|||||||
|
|
||||||
compilerConfiguration.setDebug( debug );
|
compilerConfiguration.setDebug( debug );
|
||||||
|
|
||||||
|
compilerConfiguration.setVerbose( verbose );
|
||||||
|
|
||||||
compilerConfiguration.setShowWarnings( showWarnings );
|
compilerConfiguration.setShowWarnings( showWarnings );
|
||||||
|
|
||||||
compilerConfiguration.setShowDeprecation( showDeprecation );
|
compilerConfiguration.setShowDeprecation( showDeprecation );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user