File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments