From 3e00f80ca64c72d4aea0569bd6769325a912d8b4 Mon Sep 17 00:00:00 2001 From: sciencesakura Date: Sun, 8 Mar 2026 22:16:25 +0900 Subject: [PATCH] Fixed unintended closing of code tags. --- src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java b/src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java index 61425b8..3050768 100644 --- a/src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java +++ b/src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java @@ -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 ${project.basedir}/src/main/groovy} to this list if it exists and is not yet included. */ @Parameter(defaultValue = "${project.compileSourceRoots}", required = true) private List 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 ${project.basedir}/src/test/groovy} 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}")