gpt4 book ai didi

oracle - sbt 从受密码保护的存储库下载 Artifact - Oracle jdbc 驱动程序作为托管依赖项

转载 作者:行者123 更新时间:2023-12-02 09:32:52 25 4
gpt4 key购买 nike

我想通过SBT下载oracle数据库驱动程序。如此处所述https://blogs.oracle.com/dev2dev/get-oracle-jdbc-drivers-and-ucp-from-oracle-maven-repository-without-ides它们受密码保护。在 SBT 手册 (http://www.scala-sbt.org/0.13/docs/Publishing.html) 中提到可以为解析器指定凭据。应用时如下:

resolvers += "oracle" at "https://maven.oracle.com"
credentials += Credentials("oracle download", "maven.oracle.com", "myEmail@gmail.com", "password")

libraryDependencies ++= Seq(
"com.oracle.jdbc" % "ojdbc8" % "12.2.0.1"
)

我仍然得到一个

[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.oracle.jdbc#ojdbc8;12.2.0.1: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::

配置中缺少什么?

编辑

将凭据更改为

credentials += Credentials("maven.oracle.com", "maven.oracle.com", "E-Mail", "password")

结果是

[error] Unable to find credentials for [OAM 11g @ login.oracle.com].
[warn] module not found: com.oracle.jdbc#ojdbc8;11.2.0.4
[warn] ==== local: tried
[warn] /Users/geoheil/.ivy2/local/com.oracle.jdbc/ojdbc8/11.2.0.4/ivys/ivy.xml
[warn] ==== oracle: tried
[warn] https://maven.oracle.com/com/oracle/jdbc/ojdbc8/11.2.0.4/ojdbc8-11.2.0.4.pom
[info] Resolving org.apache#apache;14 ...
[error] Unable to find credentials for [OAM 11g @ login.oracle.com].
[info] Resolving jline#jline;2.12.1 ...
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.oracle.jdbc#ojdbc8;11.2.0.4: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::

如何找到正确的预言机领域?

Unable to find credentials for [OAM 11g @ login.oracle.com]

建议OAM 11g是领域,但这仍然会导致同样的问题。还有https://blogs.oracle.com/dev2dev/get-oracle-jdbc-drivers-and-ucp-from-oracle-maven-repository-without-ides建议的 OAM 11g 不起作用。

对于gradle,似乎有一个解决方法:https://groups.google.com/forum/#!topic/gradle-dev/G8X_41lOIlU

maven {        
url 'https://www.oracle.com/content/secure/maven/content'
credentials {
username 'user'
password 'password'
}

但到目前为止,我无法获得任何选项(通过 SSO 正确的领域、解决方法)来使用 SBT。

编辑2

迄今为止最好的解决方法是 Find Oracle JDBC driver in Maven repository

编辑3

在这里找到一个可重现的例子: https://github.com/geoHeil/oracleJBCMavenSBT

最佳答案

1) 我在 github 上查看了您的项目

2) 我运行此命令来查找 Maven 安装的路径:

mvn -version

3) 我使用您的设置编辑 ....\apache-maven-3.5.0\conf\settings.xml 文件

4) 我运行此命令:

mvn clean install

5)我有同样的错误

6) 我在 Oracle official Web site 上验证了我的帐户

7) 我使用有效的登录名/密码编辑 ....\apache-maven-3.5.0\conf\settings.xml 文件

8) 我运行此命令,并且 Maven 构建成功:

mvn clean install

您需要有效的 Oracle 帐户才能解决您的问题。

注意:

如果您使用 travic-ci,请运行以下命令:

mvn clean install --settings settings.xml

在您的 settings.xml 文件中:

<server>
<id>maven.oracle.com</id>
<username>${OTN_USERNAME}</username>
<password>${OTN_PASSWORD}</password>
<configuration>
<basicAuthScope>
<host>ANY</host>
<port>ANY</port>
<realm>OAM 11g</realm>
</basicAuthScope>
<httpConfiguration>
<all>
<params>
<property>
<name>http.protocol.allow-circular-redirects</name>
<value>%b,true</value>
</property>
</params>
</all>
</httpConfiguration>
</configuration>
</server>

在 travic-ci 中,添加 2 个环境变量 ( https://travis-ci.org/YOUTORGANIZATION/YOURREPOSITORY/settings ) :

enter image description here

关于oracle - sbt 从受密码保护的存储库下载 Artifact - Oracle jdbc 驱动程序作为托管依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43950455/

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