Skip to content

Commit e2ea153

Browse files
authored
Create pom.xml
1 parent 4b67ca3 commit e2ea153

File tree

1 file changed

+29
-0
lines changed
  • jdbc-check-connection/oracle-connection-check

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<name>oracle-connection-check</name>
6+
<groupId>tools.checker</groupId>
7+
<artifactId>oracle-connection-check</artifactId>
8+
9+
<packaging>jar</packaging>
10+
<version>1.0-SNAPSHOT</version>
11+
<url>http://maven.apache.org</url>
12+
13+
<dependencies>
14+
15+
<dependency>
16+
<groupId>com.oracle.database.jdbc</groupId>
17+
<artifactId>ojdbc8</artifactId>
18+
<version>19.3.0.0</version>
19+
</dependency>
20+
21+
<dependency>
22+
<groupId>junit</groupId>
23+
<artifactId>junit</artifactId>
24+
<version>3.8.1</version>
25+
<scope>test</scope>
26+
</dependency>
27+
</dependencies>
28+
29+
</project>

0 commit comments

Comments
 (0)