You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by cs...@apache.org on 2022/11/08 14:13:20 UTC

[maven-indexer] branch master updated: Fix hamcrest use in smo backend

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 145691c  Fix hamcrest use in smo backend
145691c is described below

commit 145691c9236c1769508b1d324e56c60eac2aabce
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Tue Nov 8 15:12:56 2022 +0100

    Fix hamcrest use in smo backend
---
 search-backend-smo/pom.xml | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/search-backend-smo/pom.xml b/search-backend-smo/pom.xml
index ad710db..8d9b01c 100644
--- a/search-backend-smo/pom.xml
+++ b/search-backend-smo/pom.xml
@@ -52,13 +52,18 @@ under the License.
 
     <!-- Test -->
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.hamcrest</groupId>
-      <artifactId>hamcrest</artifactId>
+      <artifactId>hamcrest-library</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
       <scope>test</scope>
     </dependency>
   </dependencies>