Created
March 22, 2017 15:11
-
-
Save haitaoyao/4f9ac25fdc87c658357a9addc32aab53 to your computer and use it in GitHub Desktop.
hive exec maven dependency for sql parse onlly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.apache.hive</groupId> | |
<artifactId>hive-exec</artifactId> | |
<version>${hive.version}</version> | |
<classifier>core</classifier> | |
<exclusions> | |
<exclusion> | |
<groupId>commons-codec</groupId> | |
<artifactId>commons-codec</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>com.google.code.gson</groupId> | |
<artifactId>gson</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-compress</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.logging.log4j</groupId> | |
<artifactId>log4j-slf4j-impl</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.hive</groupId> | |
<artifactId>hive-llap-tez</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.hive</groupId> | |
<artifactId>hive-shims</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.zookeeper</groupId> | |
<artifactId>zookeeper</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.calcite</groupId> | |
<artifactId>calcite-core</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.hive</groupId> | |
<artifactId>hive-ant</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.curator</groupId> | |
<artifactId>curator-framework</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.curator</groupId> | |
<artifactId>apache-curator</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.codehaus.groovy</groupId> | |
<artifactId>groovy-all</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.ant</groupId> | |
<artifactId>ant</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.ivy</groupId> | |
<artifactId>ivy</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.datanucleus</groupId> | |
<artifactId>datanucleus-core</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.calcite</groupId> | |
<artifactId>calcite-avatica</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>commons-httpclient</groupId> | |
<artifactId>commons-httpclient</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.logging.log4j</groupId> | |
<artifactId>log4j-1.2-api</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well, if you only want to parse hive sql, there're 2 options:
pick either one you prefer -.-||||