pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. <parent>
  6. <artifactId>datax-all</artifactId>
  7. <groupId>com.alibaba.datax</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hbase094xwriter</artifactId>
  12. <name>hbase094xwriter</name>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <properties>
  15. <commons-codec.version>1.8</commons-codec.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.alibaba.datax</groupId>
  20. <artifactId>datax-common</artifactId>
  21. <version>${datax-project-version}</version>
  22. <exclusions>
  23. <exclusion>
  24. <artifactId>slf4j-log4j12</artifactId>
  25. <groupId>org.slf4j</groupId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.slf4j</groupId>
  31. <artifactId>slf4j-api</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>ch.qos.logback</groupId>
  35. <artifactId>logback-classic</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.hbase</groupId>
  39. <artifactId>hbase</artifactId>
  40. <version>0.94.27</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.hadoop</groupId>
  44. <artifactId>hadoop-core</artifactId>
  45. <version>0.20.205.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.zookeeper</groupId>
  49. <artifactId>zookeeper</artifactId>
  50. <version>3.3.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>commons-codec</groupId>
  54. <artifactId>commons-codec</artifactId>
  55. <version>${commons-codec.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba.datax</groupId>
  59. <artifactId>datax-core</artifactId>
  60. <version>${datax-project-version}</version>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba.datax</groupId>
  65. <artifactId>datax-common</artifactId>
  66. <version>0.0.1-SNAPSHOT</version>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <!-- compiler plugin -->
  72. <plugin>
  73. <artifactId>maven-compiler-plugin</artifactId>
  74. <configuration>
  75. <source>1.6</source>
  76. <target>1.6</target>
  77. <encoding>${project-sourceEncoding}</encoding>
  78. </configuration>
  79. </plugin>
  80. <!-- assembly plugin -->
  81. <plugin>
  82. <artifactId>maven-assembly-plugin</artifactId>
  83. <configuration>
  84. <descriptors>
  85. <descriptor>src/main/assembly/package.xml</descriptor>
  86. </descriptors>
  87. <finalName>datax</finalName>
  88. </configuration>
  89. <executions>
  90. <execution>
  91. <id>dwzip</id>
  92. <phase>package</phase>
  93. <goals>
  94. <goal>single</goal>
  95. </goals>
  96. </execution>
  97. </executions>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>