Skip to content

Commit f1054c7

Browse files
authored
fix: Update Javadoc output path to match plugin changes (#3757)
The Javadoc site generation broke after upgrading to Maven Javadoc Plugin 3.10.0 due to a change in the output directory structure (see apache/maven-javadoc-plugin#1163). This update adjusts our build script to look in the new output location, restoring proper Javadoc generation. Closes #3753 > [!NOTE] > This change has already been applied to `2.x-site-pro`
1 parent cab2047 commit f1054c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@
830830
<outputDirectory>${maven.multiModuleProjectDirectory}/target/site/javadoc/${project.artifactId}</outputDirectory>
831831
<resources>
832832
<resource>
833-
<directory>${project.build.directory}/site/apidocs</directory>
833+
<directory>${project.build.directory}/reports/apidocs</directory>
834834
</resource>
835835
</resources>
836836
</configuration>

0 commit comments

Comments
 (0)