You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by co...@apache.org on 2017/02/08 10:20:31 UTC

ranger git commit: RANGER-1359:Remove unnecessary spring dependency

Repository: ranger
Updated Branches:
  refs/heads/master 82189ab24 -> 65f4de2bd


RANGER-1359:Remove unnecessary spring dependency

Signed-off-by: Colm O hEigeartaigh <co...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/ranger/repo
Commit: http://git-wip-us.apache.org/repos/asf/ranger/commit/65f4de2b
Tree: http://git-wip-us.apache.org/repos/asf/ranger/tree/65f4de2b
Diff: http://git-wip-us.apache.org/repos/asf/ranger/diff/65f4de2b

Branch: refs/heads/master
Commit: 65f4de2bd69765f63ad95b82a742b2dbb769b273
Parents: 82189ab
Author: zhangqiang2 <zh...@zte.com.cn>
Authored: Tue Feb 7 19:35:47 2017 +0800
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Wed Feb 8 10:13:30 2017 +0000

----------------------------------------------------------------------
 pom.xml                |  4 ----
 security-admin/pom.xml | 23 +++++++++++++++++------
 2 files changed, 17 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ranger/blob/65f4de2b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index bb48ff0..48c3891 100644
--- a/pom.xml
+++ b/pom.xml
@@ -211,10 +211,6 @@
         <solr.version>5.5.1</solr.version>
         <spring-ldap-core.version>1.3.1.RELEASE</spring-ldap-core.version>
         <springframework.security.version>3.1.3.RELEASE</springframework.security.version>
-        <springframework.spring.version>2.5.6</springframework.spring.version>
-        <!--
-                <springframework.spring.version>3.1.3.RELEASE</springframework.spring.version>
-                -->
         <springframework.test.version>3.1.3.RELEASE</springframework.test.version>
         <springframework.version>3.1.3.RELEASE</springframework.version>
         <storm.version>1.0.2</storm.version>

http://git-wip-us.apache.org/repos/asf/ranger/blob/65f4de2b/security-admin/pom.xml
----------------------------------------------------------------------
diff --git a/security-admin/pom.xml b/security-admin/pom.xml
index 0fcfc5a..e1bf638 100644
--- a/security-admin/pom.xml
+++ b/security-admin/pom.xml
@@ -218,11 +218,6 @@
             <version>${springframework.version}</version>
         </dependency>
         <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring</artifactId>
-            <version>${springframework.spring.version}</version>
-        </dependency>
-        <dependency>
             <groupId>com.sun.jersey</groupId>
             <artifactId>jersey-bundle</artifactId>
             <version>${sun.jersey.bundle.version}</version>
@@ -239,7 +234,23 @@
             <exclusions>
                 <exclusion>
                     <groupId>org.springframework</groupId>
-                    <artifactId>*</artifactId>
+                    <artifactId>spring</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
                 </exclusion>
             </exclusions>
         </dependency>