You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2022/06/27 12:49:38 UTC

[tomee] branch master updated: TCK, generated code, examples, boms and deps don't need javadoc generation

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


The following commit(s) were added to refs/heads/master by this push:
     new 61fa827cac TCK, generated code, examples, boms and deps don't need javadoc generation
61fa827cac is described below

commit 61fa827cac0c8707e00f737cee1509fba52ce59f
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Mon Jun 27 14:49:31 2022 +0200

    TCK, generated code, examples, boms and deps don't need javadoc generation
---
 assembly/pom.xml | 12 ++++++++++++
 boms/pom.xml     | 13 +++++++++++++
 deps/pom.xml     | 12 ++++++++++++
 tck/pom.xml      | 12 ++++++++++++
 4 files changed, 49 insertions(+)

diff --git a/assembly/pom.xml b/assembly/pom.xml
index b41bd728ff..14a0d7d0c5 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -32,4 +32,16 @@
     <module>openejb-standalone</module>
     <module>openejb-lite</module>
   </modules>
+  <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/boms/pom.xml b/boms/pom.xml
index d0e50a0952..fde2b05bb9 100644
--- a/boms/pom.xml
+++ b/boms/pom.xml
@@ -45,5 +45,18 @@
     <module>tomee-plus-api</module>
   </modules>
 
+  <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/deps/pom.xml b/deps/pom.xml
index 0c053d90af..954643c04a 100644
--- a/deps/pom.xml
+++ b/deps/pom.xml
@@ -40,4 +40,16 @@
     <module>commons-fileupload-shade</module>
     <module>cucumber-openejb-shade</module>
   </modules>
+  <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/tck/pom.xml b/tck/pom.xml
index aa448169a1..2f1c515522 100644
--- a/tck/pom.xml
+++ b/tck/pom.xml
@@ -44,6 +44,18 @@
     <module>microprofile-tck</module>
   </modules>
 
+  <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>
   <repositories>
     <repository>
       <id>jboss-public-repository-group</id>