Skip to content

Commit 8e40285

Browse files
authored
maven project for postgresql
1 parent 7a2230e commit 8e40285

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

postgresql/pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!-- mvn archetype:generate -DgroupId=com.cherkavi.jdbc.migration -DartifactId=csv2sql -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=tru -->
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/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.cherkavi.jdbc.migration</groupId>
6+
<artifactId>csv2sql</artifactId>
7+
<packaging>jar</packaging>
8+
<version>1.0-SNAPSHOT</version>
9+
<name>csv2sql</name>
10+
<url>http://maven.apache.org</url>
11+
<dependencies>
12+
<dependency>
13+
<groupId>org.postgresql</groupId>
14+
<artifactId>postgresql</artifactId>
15+
<version>42.6.0</version>
16+
</dependency>
17+
<dependency>
18+
<groupId>org.apache.commons</groupId>
19+
<artifactId>commons-csv</artifactId>
20+
<version>1.10.0</version>
21+
</dependency>
22+
23+
24+
<dependency>
25+
<groupId>junit</groupId>
26+
<artifactId>junit</artifactId>
27+
<version>3.8.1</version>
28+
<scope>test</scope>
29+
</dependency>
30+
</dependencies>
31+
</project>

0 commit comments

Comments
 (0)