You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by sn...@apache.org on 2015/04/07 16:52:36 UTC

[1/2] incubator-ranger git commit: RANGER-377: added double quote around the java.library.path variable assignment

Repository: incubator-ranger
Updated Branches:
  refs/heads/master 75783f728 -> 982a3cb90


RANGER-377: added double quote around the java.library.path variable assignment


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

Branch: refs/heads/master
Commit: efc2c12d53267cdee89ec0500c7a1b5bf2e55b86
Parents: 52ae981
Author: sneethiraj <sn...@apache.org>
Authored: Tue Apr 7 10:46:17 2015 -0400
Committer: sneethiraj <sn...@apache.org>
Committed: Tue Apr 7 10:46:17 2015 -0400

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/efc2c12d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 09899c6..378c640 100644
--- a/pom.xml
+++ b/pom.xml
@@ -344,7 +344,7 @@
         <artifactId>maven-surefire-plugin</artifactId>
         <version>2.17</version>
         <configuration>
-           <argLine>-Djava.library.path=${hadoop.library.path}${path.separator}${java.library.path}</argLine>
+           <argLine>-Djava.library.path="${hadoop.library.path}${path.separator}${java.library.path}"</argLine>
            <skipTests>${skipTests}</skipTests>
            <encoding>UTF-8</encoding>
            <systemProperties>


[2/2] incubator-ranger git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-ranger

Posted by sn...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-ranger


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

Branch: refs/heads/master
Commit: 982a3cb900ce316effd5200c4401aadc95c2e910
Parents: efc2c12 75783f7
Author: sneethiraj <sn...@apache.org>
Authored: Tue Apr 7 10:51:58 2015 -0400
Committer: sneethiraj <sn...@apache.org>
Committed: Tue Apr 7 10:51:58 2015 -0400

----------------------------------------------------------------------
 .../plugin/store/EmbeddedServiceDefsUtil.java   |  10 +-
 .../service-defs/ranger-servicedef-kms.json     | 109 ++++++
 kms/config/kms-webapp/dbks-site.xml             |  12 +-
 kms/config/kms-webapp/kms-site.xml              |   2 +-
 .../crypto/key/kms/server/KMSConfiguration.java |   2 +-
 plugin-kms/.gitignore                           |   1 +
 plugin-kms/bin/.gitignore                       |   1 +
 plugin-kms/conf/ranger-kms-audit-changes.cfg    |  45 +++
 plugin-kms/conf/ranger-kms-audit.xml            | 233 ++++++++++++
 plugin-kms/conf/ranger-kms-security-changes.cfg |  26 ++
 plugin-kms/conf/ranger-kms-security.xml         |  67 ++++
 .../conf/ranger-policymgr-ssl-changes.cfg       |  23 ++
 plugin-kms/conf/ranger-policymgr-ssl.xml        |  63 ++++
 plugin-kms/pom.xml                              |  51 +++
 plugin-kms/scripts/install.properties           | 112 ++++++
 plugin-kms/scripts/install.sh                   | 364 +++++++++++++++++++
 .../scripts/kms-plugin-install.properties       |  23 ++
 plugin-kms/scripts/uninstall.sh                 |  70 ++++
 .../kms/authorizer/RangerKmsAuthorizer.java     | 330 +++++++++++++++++
 .../ranger/services/kms/RangerServiceKMS.java   |  73 ++++
 .../ranger/services/kms/client/KMSClient.java   | 281 ++++++++++++++
 .../services/kms/client/KMSConnectionMgr.java   |  43 +++
 .../services/kms/client/KMSResourceMgr.java     |  88 +++++
 .../client/json/model/KMSSchedulerResponse.java | 105 ++++++
 pom.xml                                         |   2 +
 src/main/assembly/plugin-kms.xml                | 150 ++++++++
 26 files changed, 2281 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/982a3cb9/pom.xml
----------------------------------------------------------------------