1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.alibaba.datax</groupId>
- <artifactId>datax-all</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>oraclewriter</artifactId>
- <name>oraclewriter</name>
- <packaging>jar</packaging>
- <description>writer data into oracle database</description>
- <dependencies>
- <dependency>
- <groupId>com.alibaba.datax</groupId>
- <artifactId>datax-common</artifactId>
- <version>${datax-project-version}</version>
- <exclusions>
- <exclusion>
- <artifactId>slf4j-log4j12</artifactId>
- <groupId>org.slf4j</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba.datax</groupId>
- <artifactId>plugin-rdbms-util</artifactId>
- <version>${datax-project-version}</version>
- </dependency>
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc6</artifactId>
- <version>11.2.0.3</version>
- <scope>system</scope>
- <systemPath>${basedir}/src/main/lib/ojdbc6-11.2.0.3.jar</systemPath>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <!-- compiler plugin -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- <encoding>${project-sourceEncoding}</encoding>
- </configuration>
- </plugin>
- <!-- assembly plugin -->
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>src/main/assembly/package.xml</descriptor>
- </descriptors>
- <finalName>datax</finalName>
- </configuration>
- <executions>
- <execution>
- <id>dwzip</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|