Repository: incubator-ranger Updated Branches: refs/heads/master 2eb3c2fe6 -> 6ea86e2cb
RANGER-1019:Audit to secure solr needs httpclient dependency library 4.5.2 version Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/6ea86e2c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/6ea86e2c Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/6ea86e2c Branch: refs/heads/master Commit: 6ea86e2cb6266783101dcf0f44c2738f94cb490b Parents: 2eb3c2f Author: rmani <[email protected]> Authored: Thu Jun 9 19:22:32 2016 -0700 Committer: rmani <[email protected]> Committed: Thu Jun 9 19:22:32 2016 -0700 ---------------------------------------------------------------------- hbase-agent/pom.xml | 5 +++++ hdfs-agent/pom.xml | 5 +++++ hive-agent/pom.xml | 5 +++++ knox-agent/pom.xml | 5 +++++ plugin-atlas/pom.xml | 5 +++++ plugin-kafka/pom.xml | 5 +++++ plugin-kms/pom.xml | 5 +++++ plugin-yarn/pom.xml | 5 +++++ pom.xml | 6 +++--- src/main/assembly/atlas-agent.xml | 4 +++- storm-agent/pom.xml | 5 +++++ 11 files changed, 51 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/hbase-agent/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-agent/pom.xml b/hbase-agent/pom.xml index b320bba..1189cab 100644 --- a/hbase-agent/pom.xml +++ b/hbase-agent/pom.xml @@ -69,5 +69,10 @@ <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcomponents.httpcore.version}</version> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/hdfs-agent/pom.xml ---------------------------------------------------------------------- diff --git a/hdfs-agent/pom.xml b/hdfs-agent/pom.xml index 6e92a0e..81c4170 100644 --- a/hdfs-agent/pom.xml +++ b/hdfs-agent/pom.xml @@ -125,6 +125,11 @@ <version>${solr.version}</version> </dependency> <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcomponents.httpcore.version}</version> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/hive-agent/pom.xml ---------------------------------------------------------------------- diff --git a/hive-agent/pom.xml b/hive-agent/pom.xml index 3161433..2c03dce 100644 --- a/hive-agent/pom.xml +++ b/hive-agent/pom.xml @@ -125,5 +125,10 @@ <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcomponents.httpcore.version}</version> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/knox-agent/pom.xml ---------------------------------------------------------------------- diff --git a/knox-agent/pom.xml b/knox-agent/pom.xml index 3f92b25..76f7f0a 100644 --- a/knox-agent/pom.xml +++ b/knox-agent/pom.xml @@ -105,5 +105,10 @@ <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcomponents.httpcore.version}</version> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/plugin-atlas/pom.xml ---------------------------------------------------------------------- diff --git a/plugin-atlas/pom.xml b/plugin-atlas/pom.xml index 7aad0b1..22be838 100644 --- a/plugin-atlas/pom.xml +++ b/plugin-atlas/pom.xml @@ -65,6 +65,11 @@ <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcomponents.httpcore.version}</version> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/plugin-kafka/pom.xml ---------------------------------------------------------------------- diff --git a/plugin-kafka/pom.xml b/plugin-kafka/pom.xml index 7c6e82f..362fb8a 100644 --- a/plugin-kafka/pom.xml +++ b/plugin-kafka/pom.xml @@ -62,5 +62,10 @@ <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcomponents.httpcore.version}</version> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/plugin-kms/pom.xml ---------------------------------------------------------------------- diff --git a/plugin-kms/pom.xml b/plugin-kms/pom.xml index 714559f..c29b7b6 100644 --- a/plugin-kms/pom.xml +++ b/plugin-kms/pom.xml @@ -51,5 +51,10 @@ <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcomponents.httpcore.version}</version> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/plugin-yarn/pom.xml ---------------------------------------------------------------------- diff --git a/plugin-yarn/pom.xml b/plugin-yarn/pom.xml index b87145d..4dbf928 100644 --- a/plugin-yarn/pom.xml +++ b/plugin-yarn/pom.xml @@ -61,5 +61,10 @@ <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcomponents.httpcore.version}</version> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ef78fb5..8220bf8 100644 --- a/pom.xml +++ b/pom.xml @@ -166,9 +166,9 @@ <hive.version>2.1.0-SNAPSHOT</hive.version> <atlas.version>0.7-incubating-SNAPSHOT</atlas.version> <htrace-core.version>3.1.0-incubating</htrace-core.version> - <httpcomponents.httpclient.version>4.3.6</httpcomponents.httpclient.version> - <httpcomponents.httpcore.version>4.4.3</httpcomponents.httpcore.version> - <httpcomponents.httpmime.version>4.5.1</httpcomponents.httpmime.version> + <httpcomponents.httpclient.version>4.5.2</httpcomponents.httpclient.version> + <httpcomponents.httpcore.version>4.4.4</httpcomponents.httpcore.version> + <httpcomponents.httpmime.version>4.5.2</httpcomponents.httpmime.version> <jackson.version>1.9.13</jackson.version> <javassist.version>3.12.1.GA</javassist.version> <javax.persistence.version>2.1.0</javax.persistence.version> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/src/main/assembly/atlas-agent.xml ---------------------------------------------------------------------- diff --git a/src/main/assembly/atlas-agent.xml b/src/main/assembly/atlas-agent.xml index 26e4c5d..9a3e618 100644 --- a/src/main/assembly/atlas-agent.xml +++ b/src/main/assembly/atlas-agent.xml @@ -61,7 +61,9 @@ <include>org.codehaus.jackson:jackson-xc</include> <include>commons-configuration:commons-configuration</include> <include>com.google.code.gson:gson*</include> - <include>org.apache.httpcomponents:httpmime:jar:${httpcomponents.httpmime.version}</include> + <include>org.apache.httpcomponents:httpclient:jar:${httpcomponents.httpclient.version}</include> + <include>org.apache.httpcomponents:httpcore:jar:${httpcomponents.httpcore.version}</include> + <include>org.apache.httpcomponents:httpmime:jar:${httpcomponents.httpmime.version}</include> <include>org.noggit:noggit:jar:${noggit.version}</include> <include>com.google.protobuf:protobuf-java:jar:${protobuf-java.version}</include> <include>org.apache.hadoop:hadoop-hdfs:jar:${hadoop.version}</include> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/6ea86e2c/storm-agent/pom.xml ---------------------------------------------------------------------- diff --git a/storm-agent/pom.xml b/storm-agent/pom.xml index 7e157a8..0a0d5da 100644 --- a/storm-agent/pom.xml +++ b/storm-agent/pom.xml @@ -71,5 +71,10 @@ <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcomponents.httpcore.version}</version> + </dependency> </dependencies> </project>
