|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <parent> |
| 5 | + <artifactId>datax-all</artifactId> |
| 6 | + <groupId>com.alibaba.datax</groupId> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + </parent> |
| 9 | + <modelVersion>4.0.0</modelVersion> |
| 10 | + |
| 11 | + <artifactId>rdbmsreader</artifactId> |
| 12 | + <name>rdbmsreader</name> |
| 13 | + <packaging>jar</packaging> |
| 14 | + |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>com.alibaba.datax</groupId> |
| 18 | + <artifactId>datax-common</artifactId> |
| 19 | + <version>${datax-project-version}</version> |
| 20 | + <exclusions> |
| 21 | + <exclusion> |
| 22 | + <artifactId>slf4j-log4j12</artifactId> |
| 23 | + <groupId>org.slf4j</groupId> |
| 24 | + </exclusion> |
| 25 | + </exclusions> |
| 26 | + </dependency> |
| 27 | + |
| 28 | + <!-- dm7 dm8 driver --> |
| 29 | + <dependency> |
| 30 | + <groupId>com.dameng</groupId> |
| 31 | + <artifactId>Dm7JdbcDriver17</artifactId> |
| 32 | + <version>7.6.0.142</version> |
| 33 | + </dependency> |
| 34 | + <!-- sybase driver --> |
| 35 | + <dependency> |
| 36 | + <groupId>com.sybase</groupId> |
| 37 | + <artifactId>jconn3</artifactId> |
| 38 | + <version>1.0.0-SNAPSHOT</version> |
| 39 | + <scope>system</scope> |
| 40 | + <systemPath>${basedir}/src/main/libs/jconn3-1.0.0-SNAPSHOT.jar</systemPath> |
| 41 | + </dependency> |
| 42 | + <!-- ppas driver --> |
| 43 | + <dependency> |
| 44 | + <groupId>ppas</groupId> |
| 45 | + <artifactId>ppas</artifactId> |
| 46 | + <version>16</version> |
| 47 | + <scope>system</scope> |
| 48 | + <systemPath>${basedir}/src/main/libs/edb-jdbc16.jar</systemPath> |
| 49 | + </dependency> |
| 50 | + <!-- db2 driver --> |
| 51 | + <dependency> |
| 52 | + <groupId>com.ibm.db2.jcc</groupId> |
| 53 | + <artifactId>db2jcc</artifactId> |
| 54 | + <version>db2jcc4</version> |
| 55 | + </dependency> |
| 56 | + <!-- sqlserver driver --> |
| 57 | + <dependency> |
| 58 | + <groupId>com.microsoft.sqlserver</groupId> |
| 59 | + <artifactId>sqljdbc4</artifactId> |
| 60 | + <version>4.0</version> |
| 61 | + </dependency> |
| 62 | + <!-- postgresql driver --> |
| 63 | + <dependency> |
| 64 | + <groupId>org.postgresql</groupId> |
| 65 | + <artifactId>postgresql</artifactId> |
| 66 | + <version>42.3.3</version> |
| 67 | + </dependency> |
| 68 | + <!-- mysql driver --> |
| 69 | + <dependency> |
| 70 | + <groupId>mysql</groupId> |
| 71 | + <artifactId>mysql-connector-java</artifactId> |
| 72 | + <version>${mysql.driver.version}</version> |
| 73 | + </dependency> |
| 74 | + <!-- opengauss driver --> |
| 75 | + <dependency> |
| 76 | + <groupId>org.opengauss</groupId> |
| 77 | + <artifactId>opengauss-jdbc</artifactId> |
| 78 | + <version>3.0.0</version> |
| 79 | + </dependency> |
| 80 | + |
| 81 | + <dependency> |
| 82 | + <groupId>org.slf4j</groupId> |
| 83 | + <artifactId>slf4j-api</artifactId> |
| 84 | + </dependency> |
| 85 | + |
| 86 | + <dependency> |
| 87 | + <groupId>ch.qos.logback</groupId> |
| 88 | + <artifactId>logback-classic</artifactId> |
| 89 | + </dependency> |
| 90 | + |
| 91 | + <dependency> |
| 92 | + <groupId>com.alibaba.datax</groupId> |
| 93 | + <artifactId>plugin-rdbms-util</artifactId> |
| 94 | + <version>${datax-project-version}</version> |
| 95 | + </dependency> |
| 96 | + |
| 97 | + </dependencies> |
| 98 | + |
| 99 | + <build> |
| 100 | + <plugins> |
| 101 | + <!-- compiler plugin --> |
| 102 | + <plugin> |
| 103 | + <artifactId>maven-compiler-plugin</artifactId> |
| 104 | + <configuration> |
| 105 | + <source>${jdk-version}</source> |
| 106 | + <target>${jdk-version}</target> |
| 107 | + <encoding>${project-sourceEncoding}</encoding> |
| 108 | + </configuration> |
| 109 | + </plugin> |
| 110 | + <!-- assembly plugin --> |
| 111 | + <plugin> |
| 112 | + <artifactId>maven-assembly-plugin</artifactId> |
| 113 | + <configuration> |
| 114 | + <descriptors> |
| 115 | + <descriptor>src/main/assembly/package.xml</descriptor> |
| 116 | + </descriptors> |
| 117 | + <finalName>datax</finalName> |
| 118 | + </configuration> |
| 119 | + <executions> |
| 120 | + <execution> |
| 121 | + <id>dwzip</id> |
| 122 | + <phase>package</phase> |
| 123 | + <goals> |
| 124 | + <goal>single</goal> |
| 125 | + </goals> |
| 126 | + </execution> |
| 127 | + </executions> |
| 128 | + </plugin> |
| 129 | + </plugins> |
| 130 | + </build> |
| 131 | + |
| 132 | +</project> |
0 commit comments