Repository: eagle Updated Branches: refs/heads/master 3c6b2b730 -> 80e2fe40e
EAGLE-879 - Using Slack Notification throws ClassNotFoundException Author: coheigea Reviewer: yonzhang Closes #879 Project: http://git-wip-us.apache.org/repos/asf/eagle/repo Commit: http://git-wip-us.apache.org/repos/asf/eagle/commit/80e2fe40 Tree: http://git-wip-us.apache.org/repos/asf/eagle/tree/80e2fe40 Diff: http://git-wip-us.apache.org/repos/asf/eagle/diff/80e2fe40 Branch: refs/heads/master Commit: 80e2fe40e5042bcb68034b8f15ee9cfd287a2a06 Parents: 3c6b2b7 Author: yonzhang <[email protected]> Authored: Tue Apr 3 16:36:23 2018 -0700 Committer: yonzhang <[email protected]> Committed: Tue Apr 3 16:36:23 2018 -0700 ---------------------------------------------------------------------- eagle-topology-assembly/pom.xml | 14 +++++++++++++- pom.xml | 8 +------- 2 files changed, 14 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/eagle/blob/80e2fe40/eagle-topology-assembly/pom.xml ---------------------------------------------------------------------- diff --git a/eagle-topology-assembly/pom.xml b/eagle-topology-assembly/pom.xml index c7ad05f..9d14657 100644 --- a/eagle-topology-assembly/pom.xml +++ b/eagle-topology-assembly/pom.xml @@ -61,6 +61,12 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>${hadoop.2.7.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> @@ -99,6 +105,12 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>${hadoop.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> @@ -161,4 +173,4 @@ </plugin> </plugins> </build> -</project> \ No newline at end of file +</project> http://git-wip-us.apache.org/repos/asf/eagle/blob/80e2fe40/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 3c777b4..a6b614c 100755 --- a/pom.xml +++ b/pom.xml @@ -178,7 +178,7 @@ <templating-maven.version>1.0.0</templating-maven.version> <!-- Environment Versions--> - <thrift.version>0.9.2</thrift.version> + <thrift.version>0.9.3</thrift.version> <hadoop.version>2.6.0.2.2.5.1-3</hadoop.version> <hadoop.2.7.version>2.7.1.2.4.2.0-258</hadoop.2.7.version> <hbase.version>0.98.4.2.2.5.1-3-hadoop2</hbase.version> @@ -202,7 +202,6 @@ <commons-math3.version>3.5</commons-math3.version> <commons-configuration.version>1.6</commons-configuration.version> <commons-logging.version>1.1.1</commons-logging.version> - <commons-httpclient.version>3.1</commons-httpclient.version> <commons-beanutils.version>1.8.0</commons-beanutils.version> <commons-collections4.version>4.0</commons-collections4.version> <commons-collections.version>3.2.1</commons-collections.version> @@ -363,11 +362,6 @@ <version>${commons-beanutils.version}</version> </dependency> <dependency> - <groupId>commons-httpclient</groupId> - <artifactId>commons-httpclient</artifactId> - <version>${commons-httpclient.version}</version> - </dependency> - <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>${commons-collections4.version}</version>
