pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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.alibaba.datax</groupId>
  6. <artifactId>datax-all</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>hbase11xsqlreader</artifactId>
  10. <name>hbase11xsqlreader</name>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <phoenix.version>4.12.0-AliHBase-1.1-0.5</phoenix.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.alibaba.datax</groupId>
  19. <artifactId>datax-common</artifactId>
  20. <version>${datax-project-version}</version>
  21. <exclusions>
  22. <exclusion>
  23. <artifactId>slf4j-log4j12</artifactId>
  24. <groupId>org.slf4j</groupId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.aliyun.phoenix</groupId>
  30. <artifactId>ali-phoenix-core</artifactId>
  31. <version>${phoenix.version}</version>
  32. <exclusions>
  33. <exclusion>
  34. <artifactId>servlet-api</artifactId>
  35. <groupId>javax.servlet</groupId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>junit</groupId>
  41. <artifactId>junit</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mockito</groupId>
  46. <artifactId>mockito-core</artifactId>
  47. <version>2.0.44-beta</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba.datax</groupId>
  52. <artifactId>datax-core</artifactId>
  53. <version>${datax-project-version}</version>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>com.alibaba.datax</groupId>
  57. <artifactId>datax-service-face</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. <scope>test</scope>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <resources>
  65. <resource>
  66. <directory>src/main/java</directory>
  67. <includes>
  68. <include>**/*.properties</include>
  69. </includes>
  70. </resource>
  71. </resources>
  72. <plugins>
  73. <!-- compiler plugin -->
  74. <plugin>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <configuration>
  77. <source>1.6</source>
  78. <target>1.6</target>
  79. <encoding>${project-sourceEncoding}</encoding>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-assembly-plugin</artifactId>
  84. <configuration>
  85. <descriptors>
  86. <descriptor>src/main/assembly/package.xml</descriptor>
  87. </descriptors>
  88. <finalName>datax</finalName>
  89. </configuration>
  90. <executions>
  91. <execution>
  92. <id>dwzip</id>
  93. <phase>package</phase>
  94. <goals>
  95. <goal>single</goal>
  96. </goals>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>