You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by se...@apache.org on 2020/12/02 13:54:46 UTC

[bigtop] branch branch-1.5 updated: BIGTOP-3458. Fix broken dependency on groovy-all in the test framework. (#706)

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

sekikn pushed a commit to branch branch-1.5
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/branch-1.5 by this push:
     new d3ac0d2  BIGTOP-3458. Fix broken dependency on groovy-all in the test framework. (#706)
d3ac0d2 is described below

commit d3ac0d2f57c71ab7f7d1d26f905aba350b4d3b08
Author: Kengo Seki <se...@apache.org>
AuthorDate: Wed Dec 2 22:52:40 2020 +0900

    BIGTOP-3458. Fix broken dependency on groovy-all in the test framework. (#706)
    
    
    (cherry picked from commit b622fc64d3b396df9678245d3e174364b6d48f27)
---
 bigtop-test-framework/pom.xml       |  3 ++-
 bigtop-tests/test-artifacts/pom.xml | 12 ++++++++++++
 pom.xml                             |  1 +
 3 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/bigtop-test-framework/pom.xml b/bigtop-test-framework/pom.xml
index bff13e9..4f2c213 100644
--- a/bigtop-test-framework/pom.xml
+++ b/bigtop-test-framework/pom.xml
@@ -34,7 +34,8 @@
   <dependencies>
     <dependency>
       <groupId>org.codehaus.groovy</groupId>
-      <artifactId>groovy-all</artifactId>
+      <artifactId>groovy-ant</artifactId>
+      <version>${groovy.version}</version>
     </dependency>
 
     <dependency>
diff --git a/bigtop-tests/test-artifacts/pom.xml b/bigtop-tests/test-artifacts/pom.xml
index f989789..4b4585e 100644
--- a/bigtop-tests/test-artifacts/pom.xml
+++ b/bigtop-tests/test-artifacts/pom.xml
@@ -56,6 +56,18 @@
       <groupId>org.apache.bigtop.itest</groupId>
       <artifactId>itest-common</artifactId>
     </dependency>
+
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-json</artifactId>
+      <version>${groovy.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-xml</artifactId>
+      <version>${groovy.version}</version>
+    </dependency>
   </dependencies>
 
   <build>
diff --git a/pom.xml b/pom.xml
index a000f06..b90b67f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -79,6 +79,7 @@
         <groupId>org.codehaus.groovy</groupId>
         <artifactId>groovy-all</artifactId>
         <version>${groovy.version}</version>
+        <type>pom</type>
       </dependency>
       <dependency>
         <groupId>org.codehaus.groovy.maven.runtime</groupId>