Skip to content

Commit 0698971

Browse files
munkslandelle
authored andcommitted
Update javadocs with the correct project URL
1 parent 1ec1fe2 commit 0698971

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/main/java/scala_maven/AddSourceMojo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class AddSourceMojo extends AbstractMojo {
3636
* Should use CanonicalPath to normalize path (true => getCanonicalPath, false =>
3737
* getAbsolutePath)
3838
*
39-
* @see <a href="https://github.com/davidB/maven-scala-plugin/issues/50">#50</a>
39+
* @see <a href="https://github.com/davidB/scala-maven-plugin/issues/50">#50</a>
4040
*/
4141
@Parameter(property = "maven.scala.useCanonicalPath", defaultValue = "true")
4242
private boolean useCanonicalPath;
@@ -62,4 +62,4 @@ public void execute() {
6262
getLog().warn(exc);
6363
}
6464
}
65-
}
65+
}

src/main/java/scala_maven/ScalaDocMojo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ protected JavaMainCaller getScalaCommand() throws Exception {
159159
addCompilerPluginOptions(jcmd);
160160

161161
// copy the classpathElements to not modify the global project definition see
162-
// https://github.com/davidB/maven-scala-plugin/issues/60
162+
// https://github.com/davidB/scala-maven-plugin/issues/60
163163
Set<File> paths = new TreeSet<>();
164164
for (String s : project.getCompileClasspathElements()) {
165165
paths.add(new File(s));
@@ -207,4 +207,4 @@ public void generate(Sink sink, Locale locale) throws MavenReportException {
207207
throw new MavenReportException("wrap: " + exc.getMessage(), exc);
208208
}
209209
}
210-
}
210+
}

src/main/java/util/FileUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class FileUtils {
2020
/**
2121
* @param canonical Should use CanonicalPath to normalize path (true => getCanonicalPath, false
2222
* =&gt; getAbsolutePath)
23-
* @see <a href="https://github.com/davidB/maven-scala-plugin/issues/50">#50</a>
23+
* @see <a href="https://github.com/davidB/scala-maven-plugin/issues/50">#50</a>
2424
*/
2525
public static String pathOf(File f, boolean canonical) throws Exception {
2626
return canonical ? f.getCanonicalPath() : f.getAbsolutePath();
@@ -29,7 +29,7 @@ public static String pathOf(File f, boolean canonical) throws Exception {
2929
/**
3030
* @param canonical Should use CanonicalPath to normalize path (true => getCanonicalPath, false
3131
* =&gt; getAbsolutePath)
32-
* @see <a href="https://github.com/davidB/maven-scala-plugin/issues/50">#50</a>
32+
* @see <a href="https://github.com/davidB/scala-maven-plugin/issues/50">#50</a>
3333
*/
3434
public static File fileOf(File f, boolean canonical) throws Exception {
3535
return canonical ? f.getCanonicalFile() : f.getAbsoluteFile();
@@ -91,4 +91,4 @@ public FileVisitResult postVisitDirectory(Path dir, IOException exc)
9191
// life...
9292
}
9393
}
94-
}
94+
}

0 commit comments

Comments
 (0)