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 <[email protected]>
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 <[email protected]>
---
 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>

Reply via email to