| 
									
										
										
										
											2018-01-25 17:01:29 +08:00
										 |  |  | <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>postgresqlwriter</artifactId> | 
					
						
							|  |  |  | 	<name>postgresqlwriter</name> | 
					
						
							|  |  |  | 	<packaging>jar</packaging> | 
					
						
							|  |  |  | 	<description>writer data into postgresql 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>org.postgresql</groupId> | 
					
						
							|  |  |  | 			<artifactId>postgresql</artifactId> | 
					
						
							| 
									
										
										
										
											2022-06-09 21:13:49 +08:00
										 |  |  | 			<version>42.3.3</version> | 
					
						
							| 
									
										
										
										
											2018-01-25 17:01:29 +08:00
										 |  |  | 		</dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	</dependencies> | 
					
						
							|  |  |  | 	<build> | 
					
						
							|  |  |  | 		<plugins> | 
					
						
							|  |  |  | 			<!-- compiler plugin --> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  | 				<configuration> | 
					
						
							| 
									
										
										
										
											2019-11-08 15:08:16 +08:00
										 |  |  | 					<source>${jdk-version}</source> | 
					
						
							|  |  |  | 					<target>${jdk-version}</target> | 
					
						
							| 
									
										
										
										
											2018-01-25 17:01:29 +08:00
										 |  |  | 					<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> |