We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92a4420 commit cbdd09aCopy full SHA for cbdd09a
src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
@@ -6011,7 +6011,7 @@ protected final JavadocOptions buildJavadocOptions() throws IOException {
6011
options.setTags(toList(tags));
6012
6013
if (getProject() != null && getJavadocDirectory() != null) {
6014
- Path basedir = getProject().getBasedir().toPath().toAbsolutePath();
+ Path basedir = getProject().getBasedir().toPath();
6015
Path javadocDirectory = getJavadocDirectory().toPath().toAbsolutePath();
6016
Path javadocResourcesDirectory = basedir.relativize(javadocDirectory);
6017
options.setJavadocResourcesDirectory(javadocResourcesDirectory.toString());
0 commit comments