1
0

pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.github.stuxuhai</groupId>
  6. <artifactId>hdata</artifactId>
  7. <version>0.2.8</version>
  8. </parent>
  9. <artifactId>hdata-hbase</artifactId>
  10. <properties>
  11. </properties>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.github.stuxuhai</groupId>
  15. <artifactId>hdata-api</artifactId>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.hadoop</groupId>
  20. <artifactId>hadoop-common</artifactId>
  21. <version>${hadoop.version}</version>
  22. <scope>${hadoop.scope}</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.hadoop</groupId>
  26. <artifactId>hadoop-hdfs</artifactId>
  27. <version>${hadoop.version}</version>
  28. <scope>${hadoop.scope}</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.hadoop</groupId>
  32. <artifactId>hadoop-mapreduce-client-core</artifactId>
  33. <version>${hadoop.version}</version>
  34. <scope>${hadoop.scope}</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.hbase</groupId>
  38. <artifactId>hbase-shaded-client</artifactId>
  39. <version>${hbase.version}</version>
  40. <scope>${hbase.scope}</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.zookeeper</groupId>
  44. <artifactId>zookeeper</artifactId>
  45. <version>${zookeeper.version}</version>
  46. <scope>${zookeeper.scope}</scope>
  47. </dependency>
  48. </dependencies>
  49. </project>