Skip to content

Commit be2fa20

Browse files
kriegaexmichael-o
authored andcommitted
[MJAVADOC-783] Invalid path when using TagletArtifact and TagletPath
Co-authored-by: Rob Gordon <[email protected]> Co-authored-by: Michael Osipov <[email protected]> This closes #300
1 parent 3eb47c5 commit be2fa20

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -2968,14 +2968,11 @@ private String getTagletPath() throws MavenReportException {
29682968
}
29692969
}
29702970

2971-
StringBuilder path = new StringBuilder();
2972-
path.append(StringUtils.join(pathParts.iterator(), File.pathSeparator));
2973-
2974-
if (tagletpath != null && !tagletpath.isEmpty()) {
2975-
path.append(JavadocUtil.unifyPathSeparator(tagletpath));
2971+
if (StringUtils.isNotEmpty(tagletpath)) {
2972+
pathParts.addAll(Arrays.asList(JavadocUtil.splitPath(tagletpath)));
29762973
}
29772974

2978-
return path.toString();
2975+
return StringUtils.join(pathParts, File.pathSeparator);
29792976
}
29802977

29812978
private Set<String> collectLinks() throws MavenReportException {

0 commit comments

Comments
 (0)