You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2022/12/28 17:45:16 UTC

[maven-doxia] branch DOXIA-684 updated (77249ad9 -> 7efd2a64)

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

hboutemy pushed a change to branch DOXIA-684
in repository https://gitbox.apache.org/repos/asf/maven-doxia.git


 discard 77249ad9 [DOXIA-684] avoid flexmark-all: declare used extensions only
     new 7efd2a64 [DOXIA-684] avoid flexmark-all: declare used extensions only

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (77249ad9)
            \
             N -- N -- N   refs/heads/DOXIA-684 (7efd2a64)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:


[maven-doxia] 01/01: [DOXIA-684] avoid flexmark-all: declare used extensions only

Posted by hb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch DOXIA-684
in repository https://gitbox.apache.org/repos/asf/maven-doxia.git

commit 7efd2a645f60a2af43fe63c4e4b19c54f2e4cd01
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Dec 24 00:00:33 2022 +0100

    [DOXIA-684] avoid flexmark-all: declare used extensions only
---
 doxia-modules/doxia-module-markdown/pom.xml | 56 ++++++++++++++++++++++++-----
 pom.xml                                     |  1 +
 2 files changed, 48 insertions(+), 9 deletions(-)

diff --git a/doxia-modules/doxia-module-markdown/pom.xml b/doxia-modules/doxia-module-markdown/pom.xml
index 6e3a1b49..ca759eae 100644
--- a/doxia-modules/doxia-module-markdown/pom.xml
+++ b/doxia-modules/doxia-module-markdown/pom.xml
@@ -51,19 +51,57 @@ under the License.
     </contributor>
   </contributors>
 
+  <properties>
+    <flexmark.version>0.42.14</flexmark.version>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>com.vladsch.flexmark</groupId>
-      <artifactId>flexmark-all</artifactId>
-      <version>0.42.14</version>
-      <exclusions>
-        <!-- exclude to PDF converter -->
-        <exclusion>
-          <groupId>com.vladsch.flexmark</groupId>
-          <artifactId>flexmark-pdf-converter</artifactId>
-        </exclusion>
-      </exclusions>
+      <artifactId>flexmark</artifactId>
+      <version>${flexmark.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-ext-abbreviation</artifactId>
+      <version>${flexmark.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-ext-autolink</artifactId>
+      <version>${flexmark.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-ext-definition</artifactId>
+      <version>${flexmark.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-ext-escaped-character</artifactId>
+      <version>${flexmark.version}</version>
     </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-ext-gfm-strikethrough</artifactId>
+      <version>${flexmark.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-ext-tables</artifactId>
+      <version>${flexmark.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-ext-typographic</artifactId>
+      <version>${flexmark.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-ext-wikilink</artifactId>
+      <version>${flexmark.version}</version>
+    </dependency>
+
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-module-xhtml</artifactId>
diff --git a/pom.xml b/pom.xml
index a4154476..ba66df1c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -262,6 +262,7 @@ under the License.
         <plugin>
           <groupId>org.apache.rat</groupId>
           <artifactId>apache-rat-plugin</artifactId>
+          <version>0.15</version>
           <configuration>
             <excludes combine.children="append">
               <exclude>src/test/resources/**/*.apt</exclude>