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 14:29:04 UTC

[jackrabbit-oak] branch trunk updated: OAK-10065: avoid-use of groovy-all artefact (#821)

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 4c0171f499 OAK-10065: avoid-use of groovy-all artefact (#821)
4c0171f499 is described below

commit 4c0171f499aa167a9ad9d0a64ddbe52bd480867b
Author: Julian Reschke <re...@apache.org>
AuthorDate: Thu Jan 12 15:28:58 2023 +0100

    OAK-10065: avoid-use of groovy-all artefact (#821)
---
 oak-examples/standalone/pom.xml |  2 +-
 oak-run/pom.xml                 | 14 +++++++++++++-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/oak-examples/standalone/pom.xml b/oak-examples/standalone/pom.xml
index 85a4831065..f708694dec 100644
--- a/oak-examples/standalone/pom.xml
+++ b/oak-examples/standalone/pom.xml
@@ -212,7 +212,7 @@
     </dependency>
     <dependency>
       <groupId>org.codehaus.groovy</groupId>
-      <artifactId>groovy-all</artifactId>
+      <artifactId>groovy</artifactId>
       <version>${groovy.version}</version>
     </dependency>
 
diff --git a/oak-run/pom.xml b/oak-run/pom.xml
index 9f8fea1d99..ee1ec3ea10 100644
--- a/oak-run/pom.xml
+++ b/oak-run/pom.xml
@@ -260,7 +260,19 @@
     </dependency>
     <dependency>
       <groupId>org.codehaus.groovy</groupId>
-      <artifactId>groovy-all</artifactId>
+      <artifactId>groovy</artifactId>
+      <version>${groovy.version}</version>
+      <classifier>indy</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-json</artifactId>
+      <version>${groovy.version}</version>
+      <classifier>indy</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-groovysh</artifactId>
       <version>${groovy.version}</version>
       <classifier>indy</classifier>
     </dependency>