pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>kuduwriter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.alibaba.datax</groupId>
  15. <artifactId>datax-common</artifactId>
  16. <version>${datax-project-version}</version>
  17. <exclusions>
  18. <exclusion>
  19. <artifactId>slf4j-log4j12</artifactId>
  20. <groupId>org.slf4j</groupId>
  21. </exclusion>
  22. </exclusions>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.kudu</groupId>
  26. <artifactId>kudu-client</artifactId>
  27. <version>1.11.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <version>4.13.1</version>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba.datax</groupId>
  37. <artifactId>datax-core</artifactId>
  38. <version>${datax-project-version}</version>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>com.alibaba.datax</groupId>
  42. <artifactId>datax-service-face</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. <scope>test</scope>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <!-- compiler plugin -->
  51. <plugin>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <configuration>
  54. <source>${jdk-version}</source>
  55. <target>${jdk-version}</target>
  56. <encoding>${project-sourceEncoding}</encoding>
  57. </configuration>
  58. </plugin>
  59. <!-- assembly plugin -->
  60. <plugin>
  61. <artifactId>maven-assembly-plugin</artifactId>
  62. <configuration>
  63. <descriptors>
  64. <descriptor>src/main/assembly/package.xml</descriptor>
  65. </descriptors>
  66. <finalName>datax</finalName>
  67. </configuration>
  68. <executions>
  69. <execution>
  70. <id>dwzip</id>
  71. <phase>package</phase>
  72. <goals>
  73. <goal>single</goal>
  74. </goals>
  75. </execution>
  76. </executions>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>