This is an automated email from the ASF dual-hosted git repository. jlmonteiro pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git
commit d43f5aa5052150f624efbe58f4d365357a6ddd74 Author: Jean-Louis Monteiro <[email protected]> AuthorDate: Mon Jun 27 14:16:34 2022 +0200 Comment out javadoc generation for this version because it fails for some weird reason --- container/mbean-annotation-api/pom.xml | 8 ++++++++ container/openejb-api/pom.xml | 12 ++++++++++++ container/openejb-jpa-integration/pom.xml | 8 ++++++++ container/openejb-loader/pom.xml | 12 ++++++++++++ 4 files changed, 40 insertions(+) diff --git a/container/mbean-annotation-api/pom.xml b/container/mbean-annotation-api/pom.xml index 5894876056..ab8ec98a02 100644 --- a/container/mbean-annotation-api/pom.xml +++ b/container/mbean-annotation-api/pom.xml @@ -42,6 +42,14 @@ </compilerArgs> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>${javadoc.version}</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </project> diff --git a/container/openejb-api/pom.xml b/container/openejb-api/pom.xml index a7ef4de66a..a78aaa5d32 100644 --- a/container/openejb-api/pom.xml +++ b/container/openejb-api/pom.xml @@ -45,5 +45,17 @@ <artifactId>jakartaee-api</artifactId> </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>${javadoc.version}</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/container/openejb-jpa-integration/pom.xml b/container/openejb-jpa-integration/pom.xml index 654a2e429a..f485d537b1 100644 --- a/container/openejb-jpa-integration/pom.xml +++ b/container/openejb-jpa-integration/pom.xml @@ -101,6 +101,14 @@ </arguments> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>${javadoc.version}</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </project> diff --git a/container/openejb-loader/pom.xml b/container/openejb-loader/pom.xml index 2bba07c351..9d329eff68 100644 --- a/container/openejb-loader/pom.xml +++ b/container/openejb-loader/pom.xml @@ -40,4 +40,16 @@ <scope>test</scope> </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>${javadoc.version}</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> </project>
