pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.lc.ibps.bigdata</groupId>
  5. <artifactId>ibps-bigdata-root</artifactId>
  6. <version>3.3.7-LC.RELEASE</version>
  7. <relativePath>../../pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ibps-hbase-api</artifactId>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.apache.hbase</groupId>
  17. <artifactId>hbase-client</artifactId>
  18. <exclusions>
  19. <exclusion>
  20. <groupId>*</groupId>
  21. <artifactId>*</artifactId>
  22. </exclusion>
  23. </exclusions>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.hbase</groupId>
  27. <artifactId>hbase-common</artifactId>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>*</groupId>
  31. <artifactId>*</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.hadoop</groupId>
  37. <artifactId>hadoop-common</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>*</groupId>
  41. <artifactId>*</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <version>3.3</version>
  51. <configuration>
  52. <source>1.8</source>
  53. <target>1.8</target>
  54. <encoding>UTF-8</encoding>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>