You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/01/22 16:58:05 UTC

[maven-doxia] branch master updated: Fix missing dependencies

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 8013887  Fix missing dependencies
8013887 is described below

commit 8013887518a46c5c7403bcb3b23845390b1ff202
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Jan 22 17:58:00 2022 +0100

    Fix missing dependencies
---
 doxia-core/pom.xml                          | 6 ++++++
 doxia-modules/doxia-module-markdown/pom.xml | 4 ++++
 2 files changed, 10 insertions(+)

diff --git a/doxia-core/pom.xml b/doxia-core/pom.xml
index b35373c..1064864 100644
--- a/doxia-core/pom.xml
+++ b/doxia-core/pom.xml
@@ -68,6 +68,12 @@ under the License.
       <scope>test</scope>
     </dependency>
     <dependency>
+        <groupId>org.hamcrest</groupId>
+        <artifactId>hamcrest-core</artifactId>
+        <version>1.3</version>
+        <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.xmlunit</groupId>
       <artifactId>xmlunit-core</artifactId>
       <scope>test</scope>
diff --git a/doxia-modules/doxia-module-markdown/pom.xml b/doxia-modules/doxia-module-markdown/pom.xml
index f87f393..92cff9a 100644
--- a/doxia-modules/doxia-module-markdown/pom.xml
+++ b/doxia-modules/doxia-module-markdown/pom.xml
@@ -53,6 +53,10 @@ under the License.
 
   <dependencies>
     <dependency>
+      <groupId>org.eclipse.sisu</groupId>
+      <artifactId>org.eclipse.sisu.plexus</artifactId>
+    </dependency>
+    <dependency>
       <groupId>com.vladsch.flexmark</groupId>
       <artifactId>flexmark-all</artifactId>
       <version>0.42.14</version>