pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.yihu.jw</groupId>
  8. <artifactId>common-lib-parent-pom</artifactId>
  9. <version>1.0.0</version>
  10. <relativePath>../../common-lib-parent-pom/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>common-hbase</artifactId>
  13. <version>1.0.0</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.apache.hbase</groupId>
  17. <artifactId>hbase-client</artifactId>
  18. <version>${version.hbase}</version>
  19. <exclusions>
  20. <exclusion>
  21. <groupId>org.slf4j</groupId>
  22. <artifactId>slf4j-log4j12</artifactId>
  23. </exclusion>
  24. <exclusion>
  25. <groupId>log4j</groupId>
  26. <artifactId>log4j</artifactId>
  27. </exclusion>
  28. <exclusion>
  29. <groupId>javax.servlet</groupId>
  30. <artifactId>servlet-api</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.hadoop</groupId>
  36. <artifactId>hadoop-client</artifactId>
  37. <version>${version.hadoop}</version>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.slf4j</groupId>
  41. <artifactId>slf4j-log4j12</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <groupId>log4j</groupId>
  45. <artifactId>log4j</artifactId>
  46. </exclusion>
  47. <exclusion>
  48. <groupId>javax.servlet</groupId>
  49. <artifactId>servlet-api</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. </dependencies>
  54. </project>