maven oralce

mvn archetype:generate -DgroupId=cc.anjun -DartifactId=oracledemo -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false


http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html

mvn install:install-file -Dfile=ojdbc6.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0 -Dpackaging=jar -DgeneratePom=true
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0</version>
</dependency>

原文地址:https://www.cnblogs.com/anjuncc/p/5837848.html