You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2019/12/11 08:44:27 UTC

[lucene-solr] branch gradle-master updated: Correct commons-compress dependency.

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

dweiss pushed a commit to branch gradle-master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/gradle-master by this push:
     new 87104a1  Correct commons-compress dependency.
87104a1 is described below

commit 87104a155a29d71e2ac7b63adfeff268389889b6
Author: Dawid Weiss <dw...@apache.org>
AuthorDate: Wed Dec 11 09:44:16 2019 +0100

    Correct commons-compress dependency.
---
 solr/core/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/build.gradle b/solr/core/build.gradle
index 6dd22eb..2ddddb4 100644
--- a/solr/core/build.gradle
+++ b/solr/core/build.gradle
@@ -89,6 +89,7 @@ dependencies {
   implementation ('org.apache.hadoop:hadoop-auth') { transitive = false }
   implementation ('org.apache.hadoop:hadoop-common') { transitive = false }
   implementation ('org.apache.hadoop:hadoop-hdfs-client') { transitive = false }
+  testImplementation 'org.apache.commons:commons-compress' // required for customized hadoop classes
 
   implementation ('net.hydromatic:eigenbase-properties') { transitive = false }
 
@@ -107,7 +108,6 @@ dependencies {
   testImplementation ('org.apache.hadoop:hadoop-hdfs') { transitive = false }
   testImplementation ('org.apache.hadoop:hadoop-hdfs::tests') { transitive = false }
   testImplementation ('org.apache.hadoop:hadoop-minikdc') { transitive = false }
-  runtimeOnly 'org.apache.commons:commons-compress'
 
   testImplementation ('org.apache.kerby:kerb-client') { transitive = false }
   testImplementation ('org.apache.kerby:kerb-common') { transitive = false }