This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.5.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 90b5bec3ee58d57c814fa91dac1eb09adcce17aa Author: Andriy Redko <[email protected]> AuthorDate: Sun Jun 19 12:00:35 2022 -0400 Fixing javadoc generation under JDK-17 (cherry picked from commit 3a4d179b5860f45511f616af4e2f3bf03c9280c4) (cherry picked from commit 6f008abce36c9903b99d0254371d087ad742a144) --- maven-plugins/java2wadl-plugin/pom.xml | 9 ++++++++- pom.xml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/maven-plugins/java2wadl-plugin/pom.xml b/maven-plugins/java2wadl-plugin/pom.xml index 65c4b59ff0..3833d5356e 100644 --- a/maven-plugins/java2wadl-plugin/pom.xml +++ b/maven-plugins/java2wadl-plugin/pom.xml @@ -230,7 +230,7 @@ </execution> </executions> <configuration> - <release>9</release> + <release>11</release> </configuration> </plugin> <plugin> @@ -249,6 +249,13 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <release>11</release> + </configuration> + </plugin> </plugins> </pluginManagement> </build> diff --git a/pom.xml b/pom.xml index 2bf8c78812..8fabc5d1de 100644 --- a/pom.xml +++ b/pom.xml @@ -459,7 +459,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>3.3.2</version> + <version>3.4.0</version> <configuration> <attach>true</attach> <source>${cxf.jdk.version}</source>
