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

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


The following commit(s) were added to refs/heads/master by this push:
     new f825659a [DOXIA-702] Fix dependency warnings in Markdown module
f825659a is described below

commit f825659a5244ee627655f232e0a96a0518d24f76
Author: Michael Osipov <micha...@apache.org>
AuthorDate: Sat Mar 18 23:42:47 2023 +0100

    [DOXIA-702] Fix dependency warnings in Markdown module
---
 doxia-modules/doxia-module-markdown/pom.xml | 23 +++++++++++++++++++++--
 1 file changed, 21 insertions(+), 2 deletions(-)

diff --git a/doxia-modules/doxia-module-markdown/pom.xml 
b/doxia-modules/doxia-module-markdown/pom.xml
index 4346ce69..0a0d8c41 100644
--- a/doxia-modules/doxia-module-markdown/pom.xml
+++ b/doxia-modules/doxia-module-markdown/pom.xml
@@ -52,8 +52,8 @@ under the License.
   </scm>
 
   <properties>
-    <flexmarkVersion>0.62.2</flexmarkVersion>
     <!-- 0.64.0 requires Java 11 -->
+    <flexmarkVersion>0.62.2</flexmarkVersion>
   </properties>
 
   <dependencies>
@@ -69,7 +69,22 @@ under the License.
     </dependency>
     <dependency>
       <groupId>com.vladsch.flexmark</groupId>
-      <artifactId>flexmark-util</artifactId>
+      <artifactId>flexmark-util-data</artifactId>
+      <version>${flexmarkVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-util-misc</artifactId>
+      <version>${flexmarkVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-util-sequence</artifactId>
+      <version>${flexmarkVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.vladsch.flexmark</groupId>
+      <artifactId>flexmark-util-ast</artifactId>
       <version>${flexmarkVersion}</version>
     </dependency>
     <dependency>
@@ -118,6 +133,10 @@ under the License.
       <version>${flexmarkVersion}</version>
     </dependency>
 
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
     <dependency>
       <groupId>org.jetbrains</groupId>
       <artifactId>annotations</artifactId>

Reply via email to