Created
November 24, 2014 12:30
-
-
Save iolo/21b5da39d3ee35bb3605 to your computer and use it in GitHub Desktop.
maven dependencies for phoenix-core
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
<project> | |
<dependencyManagement> | |
<dependency> | |
<groupId>org.apache.phoenix</groupId> | |
<artifactId>phoenix-core</artifactId> | |
<version>4.2.1</version> | |
<exclusions> | |
<exclusion> | |
<artifactId>hbase-testing-util</artifactId> | |
<groupId>org.apache.hbase</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>hbase-hadoop1-compat</artifactId> | |
<groupId>org.apache.hbase</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>hbase-hadoop-compat</artifactId> | |
<groupId>org.apache.hbase</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>hbase-client</artifactId> | |
<groupId>org.apache.hbase</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>hbase-server</artifactId> | |
<groupId>org.apache.hbase</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>hbase-common</artifactId> | |
<groupId>org.apache.hbase</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>hbase-protocol</artifactId> | |
<groupId>org.apache.hbase</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>hadoop-common</artifactId> | |
<groupId>org.apache.hadoop</groupId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.hadoop</groupId> | |
<artifactId>hadoop-mapreduce-client-core</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.hadoop</groupId> | |
<artifactId>hadoop-annotations</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.phoenix</groupId> | |
<artifactId>phoenix-hadoop2-compat</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hbase</groupId> | |
<artifactId>hbase-client</artifactId> | |
<version>0.98.4-hadoop2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hbase</groupId> | |
<artifactId>hbase-server</artifactId> | |
<version>0.98.4-hadoop2</version> | |
<exclusions> | |
<exclusion> | |
<artifactId>*</artifactId> | |
<groupId>*</groupId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
</dependencyManagement> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment