MAVEN oracle jdbc

1
2
3
4
5
6
7
8
9
10
# download oracle jdbc
[addr](http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html)
# create mvn dependency need GAV
mvn install:install-file -DgroupId=com.oracle -DartifactId=YOUR_ID -Dversion=YOUR_VERSION -Dpackaging=jar -Dfile=YOUR_FILE
# add dependency in pom.xml
<dependency>
<groupId>com.oracle</groupId>
<artifactId>YOUR_ID</artifactId>
<version>YOUR_VERSION</version>
</dependency>