Generating a JavaDoc with Maven I get an error message 'Error fetching link:' referring to a file javadoc-bundle-options. In it it contains javadocResourcesDirectory with a directory. Even if I create that directory I still get the same error. How can I correct the error?
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<show>public</show>
<quiet>true</quiet>
<doctitle>${project.name}</doctitle>
<sourceFileExcludes>**/tests/**/*.java</sourceFileExcludes>
<links>
<link>https://docs.oracle.com/en/java/javase/14/docs/api/</link>
</links>
<javadocDirectory>javadoc/resources</javadocDirectory>
</configuration>
<executions>
<execution>
<id>javadocs-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<?xml version="1.0" encoding="UTF-8"?>
<javadocOptions>
<docletArtifacts>
<docletArtifact />
</docletArtifacts>
<tagletArtifacts>
<tagletArtifact />
</tagletArtifacts>
<links>
<link>https://docs.oracle.com/en/java/javase/14/docs/api/</link>
</links>
<javadocResourcesDirectory>javadoc/resources</javadocResourcesDirectory>
</javadocOptions>