Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ public class CheckMojo extends AbstractMojo {

/**
* Specifies the source directories to analyze.
* The plugin adds {@code ${project.basedir}/src/main/groovy} to this list if it exists and is not yet included.
* The plugin adds <code>${project.basedir}/src/main/groovy}</code> to this list if it exists and is not yet included.
*/
@Parameter(defaultValue = "${project.compileSourceRoots}", required = true)
private List<String> sourceDirectories;

/**
* Specifies the test source directories to analyze.
* The plugin adds {@code ${project.basedir}/src/test/groovy} to this list if it exists and is not yet included.
* The plugin adds <code>${project.basedir}/src/test/groovy}</code> to this list if it exists and is not yet included.
* This parameter is used only if {@link #includeTests} is set to {@code true}.
*/
@Parameter(defaultValue = "${project.testCompileSourceRoots}")
Expand Down