Skip to content

Commit 3ca17ec

Browse files
committed
Fix Javadoc directory after plugin upgrade.
See gh-913
1 parent 1725512 commit 3ca17ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spring-vault-distribution/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
<configuration>
245245
<target>
246246
<copy todir="${project.root}/target/antora/modules/ROOT/assets/attachments/api/java">
247-
<fileset dir="${project.root}/target/site/apidocs" erroronmissingdir="true" />
247+
<fileset dir="${project.root}/target/reports/apidocs" erroronmissingdir="true" />
248248
</copy>
249249
</target>
250250
</configuration>

spring-vault-distribution/src/assembly/docs.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
Adds reference manual (html and pdf) to the distribution archive
1313
under the 'docs/reference' directory see pom.xml 'maven-javadoc-plugin' declaration.
1414
-->
15-
<directory>${project.root}/target/site/reference</directory>
15+
<directory>${project.root}/target/reports/reference</directory>
1616
<outputDirectory>reference</outputDirectory>
1717
</fileSet>
1818
<fileSet>
1919
<!--
2020
Adds javadoc html to the distribution archive under the 'docs/javadoc'
2121
directory see pom.xml 'maven-javadoc-plugin' declaration.
2222
-->
23-
<directory>${project.root}/target/site/apidocs</directory>
23+
<directory>${project.root}/target/reports/apidocs</directory>
2424
<outputDirectory>api</outputDirectory>
2525
</fileSet>
2626
</fileSets>

0 commit comments

Comments
 (0)