EAGLE-879 - Using Slack Notification throws ClassNotFoundException
Author: coheigea
Reviewer: yonzhang

Closes #879
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>
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>