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:16:53 UTC

[tomee] branch master updated (b2535bc61e -> d43f5aa505)

This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git


    from b2535bc61e Avoid ${tomee.version} in examples because release plugin can't handle it
     new 600b9a1a2c Downgrade javadoc plugin as the upgrade seems to be worse
     new d43f5aa505 Comment out javadoc generation for this version because it fails for some weird reason

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 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 ++++++++++++
 pom.xml                                   |  4 +++-
 5 files changed, 43 insertions(+), 1 deletion(-)


[tomee] 01/02: Downgrade javadoc plugin as the upgrade seems to be worse

Posted by jl...@apache.org.
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 600b9a1a2cdc9a8717d55e2fc35e850a74b3ee76
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Mon Jun 27 14:15:51 2022 +0200

    Downgrade javadoc plugin as the upgrade seems to be worse
---
 pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 025d4a9486..f066278f79 100644
--- a/pom.xml
+++ b/pom.xml
@@ -266,7 +266,7 @@
     <jackson.dataformat.version>2.13.2</jackson.dataformat.version>
 
     <!-- Javadoc & Asciidoclet -->
-    <javadoc.version>3.0.1</javadoc.version>
+    <javadoc.version>3.3.2</javadoc.version>
     <asciidoclet.version>1.5.0</asciidoclet.version>
 
     <maven.compiler.source>11</maven.compiler.source>
@@ -974,6 +974,8 @@
                 <additionalOption>--attribute "version=${project.version}"</additionalOption>
               </additionalOptions>
               <doclint>none</doclint> <!-- Doclint is enabled by default in java 8+, this conf is needed disable it till a rewrite of javadoc is done (https://www.oracle.com/technetwork/java/javase/documentation/index-137868.html#format)-->
+              <quiet>true</quiet>
+              <source>11</source>
             </configuration>
           </plugin>
         </plugins>


[tomee] 02/02: Comment out javadoc generation for this version because it fails for some weird reason

Posted by jl...@apache.org.
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 <jl...@tomitribe.com>
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>