This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch fix/site-javadoc in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 0bf45e0995946b9e596a2dc81aee0cd14043e07c Author: Piotr P. Karwasz <[email protected]> AuthorDate: Wed Jun 18 08:56:08 2025 +0200 fix: Update Javadoc output path to match plugin changes 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` --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3de3452381..0375ec27e8 100644 --- a/pom.xml +++ b/pom.xml @@ -830,7 +830,7 @@ <outputDirectory>${maven.multiModuleProjectDirectory}/target/site/javadoc/${project.artifactId}</outputDirectory> <resources> <resource> - <directory>${project.build.directory}/site/apidocs</directory> + <directory>${project.build.directory}/reports/apidocs</directory> </resource> </resources> </configuration>
