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/01/12 18:11:46 UTC

[jackrabbit-oak] branch trunk updated: 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 trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 3b3e72a784 OAK-10065: avoid-use of groovy-all artefact
3b3e72a784 is described below

commit 3b3e72a784b45c2d0ea1ebbed377e0ea551ec205
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 fcbff4fe36..6702fccfb6 100644
--- a/oak-pojosr/pom.xml
+++ b/oak-pojosr/pom.xml
@@ -321,7 +321,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>