Hi,

Just found an issue with Hive-JDBC's inclusion of SLF4J while packaging. Not sure if it's intentional to not exclude slf4j with maven-shade plugin, but it still throws an exception similar to the Jira Hive-6162. Please find attached the patch to exclude slf4j dependencies while packaging (I don't seem to have access to open issues in apache jira after creating an account..).

Regards,
Navaneeth
diff --git jdbc/pom.xml jdbc/pom.xml
index 253b840..8146901 100644
--- jdbc/pom.xml
+++ jdbc/pom.xml
@@ -150,6 +150,7 @@
                   <exclude>org.tukaani:*</exclude>
                   <exclude>org.iq80.snappy:*</exclude>
                   <exclude>org.apache.velocity:*</exclude>
+                  <exclude>org.slf4j:*</exclude>
                 </excludes>
               </artifactSet>
               <filters>

Reply via email to