Fix Javadoc directory after plugin upgrade.

See gh-913
This commit is contained in:
Mark Paluch
2025-04-25 14:44:00 +02:00
parent 1725512107
commit 3ca17ec7ca
2 changed files with 3 additions and 3 deletions

View File

@@ -244,7 +244,7 @@
<configuration>
<target>
<copy todir="${project.root}/target/antora/modules/ROOT/assets/attachments/api/java">
<fileset dir="${project.root}/target/site/apidocs" erroronmissingdir="true" />
<fileset dir="${project.root}/target/reports/apidocs" erroronmissingdir="true" />
</copy>
</target>
</configuration>

View File

@@ -12,7 +12,7 @@
Adds reference manual (html and pdf) to the distribution archive
under the 'docs/reference' directory see pom.xml 'maven-javadoc-plugin' declaration.
-->
<directory>${project.root}/target/site/reference</directory>
<directory>${project.root}/target/reports/reference</directory>
<outputDirectory>reference</outputDirectory>
</fileSet>
<fileSet>
@@ -20,7 +20,7 @@
Adds javadoc html to the distribution archive under the 'docs/javadoc'
directory see pom.xml 'maven-javadoc-plugin' declaration.
-->
<directory>${project.root}/target/site/apidocs</directory>
<directory>${project.root}/target/reports/apidocs</directory>
<outputDirectory>api</outputDirectory>
</fileSet>
</fileSets>