Repository: falcon Updated Branches: refs/heads/master 6610f36b1 -> 609fc5bc1
FALCON-2065 Falcon CLI failing with missing KerberosAuthenticator class Author: peeyush b <[email protected]> Reviewers: "Balu Vellanki <[email protected]>" Closes #218 from peeyushb/FALCON-2065 Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/609fc5bc Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/609fc5bc Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/609fc5bc Branch: refs/heads/master Commit: 609fc5bc143bc5ec11654376dc3a938f7af10169 Parents: 6610f36 Author: peeyush b <[email protected]> Authored: Thu Jul 14 09:00:47 2016 -0700 Committer: bvellanki <[email protected]> Committed: Thu Jul 14 09:00:47 2016 -0700 ---------------------------------------------------------------------- cli/pom.xml | 11 ++++++++++- client/pom.xml | 3 ++- 2 files changed, 12 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/609fc5bc/cli/pom.xml ---------------------------------------------------------------------- diff --git a/cli/pom.xml b/cli/pom.xml index 8eb853c..a41e6d9 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -39,6 +39,16 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-auth</artifactId> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -169,7 +179,6 @@ <include>commons-codec:*</include> <include>commons-io:*</include> <include>jline:*</include> - <include>org.slf4j:*</include> <include>log4j:*</include> <include>com.sun.jersey:*</include> <include>org.springframework:*</include> http://git-wip-us.apache.org/repos/asf/falcon/blob/609fc5bc/client/pom.xml ---------------------------------------------------------------------- diff --git a/client/pom.xml b/client/pom.xml index 1087675..6df9d6d 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -78,7 +78,9 @@ <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> + <scope>provided</scope> </dependency> + <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> @@ -117,7 +119,6 @@ <goal>copy-dependencies</goal> </goals> <configuration> - <excludeScope>provided</excludeScope> <outputDirectory>${project.build.directory}/dependency</outputDirectory> </configuration> </execution>
