You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by pr...@apache.org on 2020/03/29 09:02:42 UTC

[ranger] branch master updated: RANGER-2749: Add explicit commons-lang dependency

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

pradeep pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git


The following commit(s) were added to refs/heads/master by this push:
     new 2459a50  RANGER-2749: Add explicit commons-lang dependency
2459a50 is described below

commit 2459a50bb50424b4e9fb1000b1ad6cd683efd58d
Author: Grant Henke <gh...@cloudera.com>
AuthorDate: Wed Mar 4 09:30:50 2020 -0600

    RANGER-2749: Add explicit commons-lang dependency
    
    agents-common uses commons-lang but does not specify it in the
    pom. Depending on a transitive dependncy is not safe.
    
    This patch adds the explicit dependency to the pom.
    
    Signed-off-by: pradeep <pr...@apache.org>
---
 agents-common/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/agents-common/pom.xml b/agents-common/pom.xml
index c78dc5f..44944f2 100644
--- a/agents-common/pom.xml
+++ b/agents-common/pom.xml
@@ -49,6 +49,11 @@
             <version>${jersey-bundle.version}</version>
         </dependency>
         <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>${commons.lang.version}</version>
+        </dependency>
+        <dependency>
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
             <version>${commons.logging.version}</version>