SLIDER-670 NPE in RMAuthenticationFilter chain, missing httpclient method
Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/3215e806 Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/3215e806 Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/3215e806 Branch: refs/heads/feature/SLIDER-319_codahale_metrics Commit: 3215e806e7a486927803807190e29d006bda75c9 Parents: 2bab298 Author: Steve Loughran <[email protected]> Authored: Sat Nov 22 18:46:53 2014 +0000 Committer: Steve Loughran <[email protected]> Committed: Sat Nov 22 18:46:53 2014 +0000 ---------------------------------------------------------------------- pom.xml | 18 +++++++++++++++++- slider-core/pom.xml | 11 ++++++++++- .../standalone/TestStandaloneAgentWeb.groovy | 2 +- 3 files changed, 28 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/3215e806/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 03a1907..7f73bbd 100644 --- a/pom.xml +++ b/pom.xml @@ -509,6 +509,10 @@ <groupId>com.sun.jersey.jersey-test-framework</groupId> <artifactId>jersey-test-framework-grizzly2</artifactId> </exclusion> + <exclusion> + <groupId>net.java.dev.jets3t</groupId> + <artifactId>jets3t</artifactId> + </exclusion> </exclusions> </dependency> @@ -613,7 +617,19 @@ </exclusion> </exclusions> </dependency> - + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.2.5</version> + </dependency> + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>4.2.5</version> + </dependency> + <!-- ======================================================== --> <!-- HBASE --> <!-- ======================================================== --> http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/3215e806/slider-core/pom.xml ---------------------------------------------------------------------- diff --git a/slider-core/pom.xml b/slider-core/pom.xml index 6bb7c09..a36e915 100644 --- a/slider-core/pom.xml +++ b/slider-core/pom.xml @@ -282,7 +282,6 @@ <scope>test</scope> </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> @@ -320,6 +319,16 @@ </dependency> <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + </dependency> + + <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/3215e806/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAgentWeb.groovy ---------------------------------------------------------------------- diff --git a/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAgentWeb.groovy b/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAgentWeb.groovy index 717d98f..458c921 100644 --- a/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAgentWeb.groovy +++ b/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAgentWeb.groovy @@ -69,7 +69,7 @@ class TestStandaloneAgentWeb extends AgentMiniClusterTestBase { def appmaster = report.trackingUrl -// GET(appmaster) + GET(appmaster) // GET(appmaster, RestPaths.SYSTEM_HEALTHCHECK) // GET(appmaster, RestPaths.SYSTEM_PING)
