pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>sqlserverreader</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.alibaba.datax</groupId>
  13. <artifactId>datax-common</artifactId>
  14. <version>${datax-project-version}</version>
  15. <exclusions>
  16. <exclusion>
  17. <artifactId>slf4j-log4j12</artifactId>
  18. <groupId>org.slf4j</groupId>
  19. </exclusion>
  20. </exclusions>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.slf4j</groupId>
  24. <artifactId>slf4j-api</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>ch.qos.logback</groupId>
  28. <artifactId>logback-classic</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.microsoft.sqlserver</groupId>
  32. <artifactId>sqljdbc4</artifactId>
  33. <version>4.0</version>
  34. <scope>system</scope>
  35. <systemPath>${basedir}/src/main/lib/sqljdbc4-4.0.jar</systemPath>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba.datax</groupId>
  39. <artifactId>plugin-rdbms-util</artifactId>
  40. <version>${datax-project-version}</version>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <!-- compiler plugin -->
  46. <plugin>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <configuration>
  49. <source>1.6</source>
  50. <target>1.6</target>
  51. <encoding>${project-sourceEncoding}</encoding>
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-assembly-plugin</artifactId>
  56. <configuration>
  57. <descriptors>
  58. <descriptor>src/main/assembly/package.xml</descriptor>
  59. </descriptors>
  60. <finalName>datax</finalName>
  61. </configuration>
  62. <executions>
  63. <execution>
  64. <id>dwzip</id>
  65. <phase>package</phase>
  66. <goals>
  67. <goal>single</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>