diff --git a/src/main/java/scala_maven/AddSourceMojo.java b/src/main/java/scala_maven/AddSourceMojo.java index 771c6c24..0d12dfa4 100644 --- a/src/main/java/scala_maven/AddSourceMojo.java +++ b/src/main/java/scala_maven/AddSourceMojo.java @@ -36,7 +36,7 @@ public class AddSourceMojo extends AbstractMojo { * Should use CanonicalPath to normalize path (true => getCanonicalPath, false => * getAbsolutePath) * - * @see #50 + * @see #50 */ @Parameter(property = "maven.scala.useCanonicalPath", defaultValue = "true") private boolean useCanonicalPath; @@ -62,4 +62,4 @@ public void execute() { getLog().warn(exc); } } -} +} \ No newline at end of file diff --git a/src/main/java/scala_maven/ScalaDocMojo.java b/src/main/java/scala_maven/ScalaDocMojo.java index e27ef2ac..261741ad 100644 --- a/src/main/java/scala_maven/ScalaDocMojo.java +++ b/src/main/java/scala_maven/ScalaDocMojo.java @@ -159,7 +159,7 @@ protected JavaMainCaller getScalaCommand() throws Exception { addCompilerPluginOptions(jcmd); // copy the classpathElements to not modify the global project definition see - // https://github.com/davidB/maven-scala-plugin/issues/60 + // https://github.com/davidB/scala-maven-plugin/issues/60 Set paths = new TreeSet<>(); for (String s : project.getCompileClasspathElements()) { paths.add(new File(s)); @@ -207,4 +207,4 @@ public void generate(Sink sink, Locale locale) throws MavenReportException { throw new MavenReportException("wrap: " + exc.getMessage(), exc); } } -} +} \ No newline at end of file diff --git a/src/main/java/util/FileUtils.java b/src/main/java/util/FileUtils.java index 8b06770e..2acf5741 100644 --- a/src/main/java/util/FileUtils.java +++ b/src/main/java/util/FileUtils.java @@ -20,7 +20,7 @@ public class FileUtils { /** * @param canonical Should use CanonicalPath to normalize path (true => getCanonicalPath, false * => getAbsolutePath) - * @see #50 + * @see #50 */ public static String pathOf(File f, boolean canonical) throws Exception { return canonical ? f.getCanonicalPath() : f.getAbsolutePath(); @@ -29,7 +29,7 @@ public static String pathOf(File f, boolean canonical) throws Exception { /** * @param canonical Should use CanonicalPath to normalize path (true => getCanonicalPath, false * => getAbsolutePath) - * @see #50 + * @see #50 */ public static File fileOf(File f, boolean canonical) throws Exception { return canonical ? f.getCanonicalFile() : f.getAbsoluteFile(); @@ -91,4 +91,4 @@ public FileVisitResult postVisitDirectory(Path dir, IOException exc) // life... } } -} +} \ No newline at end of file