Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ public class CompilerMojo extends AbstractCompilerMojo {

/**
* A list of exclusion filters for the compiler.
* Excluding a source file only prevents the plugin from passing it explicitly to the compiler.
* The compiler may still find it on the source path and generate a class file for it.
* This can happen with {@code module-info.java}.
*
* @see AbstractCompilerMojo#implicit
*/
@Parameter
private Set<String> excludes = new HashSet<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ public class TestCompilerMojo extends AbstractCompilerMojo {

/**
* A list of exclusion filters for the compiler.
* Excluding a source file only prevents the plugin from passing it explicitly to the compiler.
* The compiler may still find it on the source path and generate a class file for it.
* This can happen with {@code module-info.java}.
*
* @see AbstractCompilerMojo#implicit
*/
@Parameter
private Set<String> testExcludes = new HashSet<>();
Expand Down
Loading