我看到了这个问题,但似乎没有任何帮助。我将尽力使答案更好,并希望能够找到解决方案。
在我build.gradle
下dependencies
我有:
compile files('oracle/ojdbc7-12.1.0.2.jar')
我手动将jar放在目录中。
我现在正在尝试将其从nuxus中拉出来。
我是我的本地gradle.properties
我添加了我的用户名和密码,但它提取了所有依赖项,并且无法从nexus获取所有这些并且失败。我想用gradle build来拉一个jar
(jbdc)。
错误在这里:
> Configure project :api
init.gradle/NexusRepositoryPlugin: MavenRepo at https://repo.maven.apache.org/maven2/ removed.
init.gradle/NexusRepositoryPlugin: __plugin_repository__Gradle Central Plugin Repository kept (not a Maven repository).
init.gradle/NexusRepositoryPlugin: MavenRepo at https://repo.maven.apache.org/maven2/ removed.
init.gradle/NexusRepositoryPlugin: BintrayJCenter at https://jcenter.bintray.com/ removed.
* What went wrong:
Could not resolve all dependencies for configuration ':api:detachedConfiguration1'.
> Could not resolve org.springframework.boot:spring-boot-dependencies:2.0.1.RELEASE.
Required by:
project :api
> Could not resolve org.springframework.boot:spring-boot-dependencies:2.0.1.RELEASE.
么?
答案 0 :(得分:0)
我对该问题的理解表明,您正在使用仅包含该JDBC jar的私有库替换公共存储库声明。
您应该保留公共存储库声明并添加私有存储库声明。 Gradle将在第一次搜索JDBC jar并检索它。