1
0

pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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>databendwriter</artifactId>
  12. <name>databendwriter</name>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.databend</groupId>
  17. <artifactId>databend-jdbc</artifactId>
  18. <version>0.1.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.alibaba.datax</groupId>
  22. <artifactId>datax-core</artifactId>
  23. <version>${datax-project-version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.alibaba.datax</groupId>
  27. <artifactId>datax-common</artifactId>
  28. <version>${datax-project-version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.slf4j</groupId>
  32. <artifactId>slf4j-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>ch.qos.logback</groupId>
  36. <artifactId>logback-classic</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.alibaba.datax</groupId>
  40. <artifactId>plugin-rdbms-util</artifactId>
  41. <version>${datax-project-version}</version>
  42. <exclusions>
  43. <exclusion>
  44. <groupId>com.google.guava</groupId>
  45. <artifactId>guava</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <dependency>
  50. <groupId>junit</groupId>
  51. <artifactId>junit</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <resources>
  57. <resource>
  58. <directory>src/main/java</directory>
  59. <includes>
  60. <include>**/*.properties</include>
  61. </includes>
  62. </resource>
  63. </resources>
  64. <plugins>
  65. <!-- compiler plugin -->
  66. <plugin>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <configuration>
  69. <source>${jdk-version}</source>
  70. <target>${jdk-version}</target>
  71. <encoding>${project-sourceEncoding}</encoding>
  72. </configuration>
  73. </plugin>
  74. <!-- assembly plugin -->
  75. <plugin>
  76. <artifactId>maven-assembly-plugin</artifactId>
  77. <configuration>
  78. <descriptors>
  79. <descriptor>src/main/assembly/package.xml</descriptor>
  80. </descriptors>
  81. <finalName>datax</finalName>
  82. </configuration>
  83. <executions>
  84. <execution>
  85. <id>dwzip</id>
  86. <phase>package</phase>
  87. <goals>
  88. <goal>single</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>