You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by re...@apache.org on 2023/02/01 16:25:27 UTC

[jackrabbit-oak] 02/02: OAK-10065: avoid-use of groovy-all artefact

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

reschke pushed a commit to branch 1.22
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git

commit d4341adf142e8d2dfc64a60d1873a38f4bbc5bee
Author: Julian Reschke <ju...@gmx.de>
AuthorDate: Thu Jan 12 19:05:34 2023 +0100

    OAK-10065: avoid-use of groovy-all artefact
---
 oak-pojosr/pom.xml | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/oak-pojosr/pom.xml b/oak-pojosr/pom.xml
index e36be306a6..88ebd05d76 100644
--- a/oak-pojosr/pom.xml
+++ b/oak-pojosr/pom.xml
@@ -322,7 +322,19 @@
     </dependency>
     <dependency>
       <groupId>org.codehaus.groovy</groupId>
-      <artifactId>groovy-all</artifactId>
+      <artifactId>groovy</artifactId>
+      <version>${groovy.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-json</artifactId>
+      <version>${groovy.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-sql</artifactId>
       <version>${groovy.version}</version>
       <scope>test</scope>
     </dependency>