File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/codehaus/mojo/aspectj Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -423,7 +423,7 @@ public abstract class AbstractAjcCompiler extends AbstractAjcMojo {
423423 * @since 1.13
424424 */
425425 @ Parameter
426- protected List <String > compilerArgs = new ArrayList <>();
426+ protected List <String > additionalCompilerArgs = new ArrayList <>();
427427
428428 /**
429429 * Activates compiler preview features (e.g. sealed classes in Java 16) when used with a suitable JDK version
@@ -668,8 +668,8 @@ protected void assembleArguments()
668668 }
669669 ajcOptions .addAll (resolvedIncludes );
670670
671- if (CollectionUtils .isNotEmpty (compilerArgs )) {
672- ajcOptions .addAll (compilerArgs );
671+ if (CollectionUtils .isNotEmpty (additionalCompilerArgs )) {
672+ ajcOptions .addAll (additionalCompilerArgs );
673673 }
674674 }
675675
You can’t perform that action at this time.
0 commit comments