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

vy pushed a commit to branch release/2.21.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/release/2.21.0 by this push:
     new 52566be5c2 Skip the `export-asciidoc-to-html` redundant execution 
inherited
52566be5c2 is described below

commit 52566be5c2e33510248a297186abb2a29434d77e
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Fri Oct 6 12:03:24 2023 +0200

    Skip the `export-asciidoc-to-html` redundant execution inherited
---
 pom.xml | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 7f953b6615..849b5204c5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -351,7 +351,6 @@
     <!-- =================================================
          Plugin version properties (in alphabetical order)
          ================================================= -->
-    <asciidoctor-maven-plugin.version>2.2.4</asciidoctor-maven-plugin.version>
     <docker-maven-plugin.version>0.43.4</docker-maven-plugin.version>
     <exam-maven-plugin.version>4.13.5</exam-maven-plugin.version>
     <maven-taglib-plugin.version>2.4</maven-taglib-plugin.version>
@@ -888,6 +887,21 @@
         </dependencies>
       </plugin>
 
+      <!-- We (sadly) use `maven-site-plugin`, which handles AsciiDoc files.
+           Hence, skip the `asciidoctor-maven-plugin` redundant execution 
inherited from the parent. -->
+      <plugin>
+        <groupId>org.asciidoctor</groupId>
+        <artifactId>asciidoctor-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>export-asciidoc-to-html</id>
+            <configuration>
+              <skip>true</skip>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
       <!-- ███████ ███    ██ ██████         ███████ ██ ████████ ███████
            ██      ████   ██ ██   ██ ██     ██      ██    ██    ██
            █████   ██ ██  ██ ██   ██        ███████ ██    ██    █████

Reply via email to