Skip to content

Commit 3466913

Browse files
authored
Merge pull request oracle-samples#108 from oracle/Pom
Create pom.xml
2 parents 7a940e3 + 06cb50e commit 3466913

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

java/jdbc/BasicSamples/pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
<groupId>com.oracle.jdbctest</groupId>
5+
<artifactId>jdbc-test-project</artifactId>
6+
<packaging>jar</packaging>
7+
<version>1.0-SNAPSHOT</version>
8+
<name>jdbc-test-project</name>
9+
<url>http://maven.apache.org</url>
10+
11+
<properties>
12+
<maven.compiler.source>11</maven.compiler.source>
13+
<maven.compiler.target>11</maven.compiler.target>
14+
</properties>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>com.oracle.database.jdbc</groupId>
19+
<artifactId>ojdbc8</artifactId>
20+
<version>19.6.0.0</version>
21+
</dependency>
22+
23+
<dependency>
24+
<groupId>com.oracle.database.jdbc</groupId>
25+
<artifactId>ucp</artifactId>
26+
<version>19.6.0.0</version>
27+
</dependency>
28+
</dependencies>
29+
30+
</project>

0 commit comments

Comments
 (0)