gpt4 book ai didi

java - Oracle JDBC 7 作为 Maven 依赖项

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:32:16 25 4
gpt4 key购买 nike

我正在尝试将 Oracle JDBC 作为 Maven 依赖项添加到我的项目中。我在网上关注了多个教程,这些教程提出了添加第三方依赖项的各种方法。

我选择了本地安装方法,但遇到了类似 ( this person) 的问题。

我运行以下命令来安装 jar:

mvn install:install-file -Dfile={lib/ojdbc7.jar} -DgroupId=com.oracle -DartifactId=ojdbc7 -Dversion=12.1.0.1 -Dpackaging=jar

它成功了:

[INFO] --- maven-install-plugin:2.3:install-file (default-cli) @ standalone-pom ---
[INFO] Installing /home/<myfolder>/{lib/ojdbc7.jar} to /home/<myname>/.m2/repository/com/oracle/ojdbc7/12.1.0.1/ojdbc7-12.1.0.1.jar

然后我将以下内容添加到我的 pom 中:

 <dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc7</artifactId>
<version>12.1.0.1</version>
</dependency>

然而,当我编译时,我得到以下信息:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.307s
[INFO] Finished at: Sat May 02 20:40:07 NZST 2015
[INFO] Final Memory: 8M/56M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project xxx: Could not resolve dependencies for project com.xxx:xxx:jar:1.0-SNAPSHOT: Failure to find com.oracle:ojdbc7:jar:12.1.0.1 in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

我试过 -U-o 标志但无济于事。我还尝试通过首先 cding 到 lib 目录(如 Raghuram 在另一个问题上所建议的那样)来安装 jar,没有任何变化。

最佳答案

解决方案

  1. 手动将此 ojdbc7-12.1.0.1.jar 文件放入本地 Maven/缓存存储库。
  2. 使用mvn deploy goal当您在本地 Maven 存储库中使用第 3 方 Jar/专有 JAR 文件时。

关于java - Oracle JDBC 7 作为 Maven 依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30000067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com