We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
implicit
1 parent 0e8e916 commit 38ea0c1Copy full SHA for 38ea0c1
src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
@@ -402,6 +402,14 @@ public abstract class AbstractCompilerMojo
402
@Parameter( property = "maven.compiler.debuglevel" )
403
private String debuglevel;
404
405
+ /**
406
+ * Keyword to be appended to the <code>-implicit:</code> command-line switch.
407
+ *
408
+ * @since 3.10.2
409
+ */
410
+ @Parameter( property = "maven.compiler.implicit" )
411
+ private String implicit;
412
+
413
/**
414
*
415
*/
@@ -686,6 +694,8 @@ public void execute()
686
694
687
695
compilerConfiguration.setDebugFileName( getDebugFileName() );
688
696
697
+ compilerConfiguration.setImplicitOption( implicit );
698
689
699
if ( debug && StringUtils.isNotEmpty( debuglevel ) )
690
700
{
691
701
String[] split = StringUtils.split( debuglevel, "," );
0 commit comments