标签:pid mave 问题 maven path pre data jar pac
1.通过Oracle官方网站下载相应版本:http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html
2.通过Oracle的安装目录获得,位置在“{ORACLE_HOME}\jdbc\lib\ojdbc14.jar”
手动安装请参考另一篇文章:maven3 手动安装本地jar到仓库
http://www.cnblogs.com/leiOOlei/p/3356834.html
或者命令如下:
mvn install:install-file -Dfile={Path/to/your/ojdbc.jar} -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0 -Dpackaging=jar
<dependencies>
<!-- 添加oracle jdbc driver -->
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.4.0</version>
</dependency>
</dependencies>
好了,可以正常引用了。
标签:pid mave 问题 maven path pre data jar pac
原文地址:https://www.cnblogs.com/both-eyes/p/10097083.html