【发布时间】:2012-05-22 23:57:03
【问题描述】:
我有一个可通过 HTTPS 访问的 Nexus。只有授权用户有权访问它。使用 Maven,当所有必需的工件都在本地存储库中时,我什至可以部署构建工件。但是当我从本地存储库中删除一些必需的工件时,构建失败。
Downloading: https://example.com/nexus/content/groups/all/org/springframework/spring-test-mvc/1.0.0.BUILD-SNAPSHOT/spring-test-mvc-1.0.0.BUILD-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] example - project1 ..................................... SUCCESS [0.500s]
[INFO] example - project2 ..................................... FAILURE [2.951s]
[INFO] example - project3 ...................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.599s
[INFO] Finished at: Tue May 15 13:58:13 EEST 2012
[INFO] Final Memory: 6M/121M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project example - project2: Could not resolve dependencies for project com.example:example-project:jar:1.2.0-SNAPSHOT: Failed to collect dependencies for [com.example:example-project:jar:1.2.0-SNAPSHOT (compile), org.springframework:spring-beans:jar:3.1.1.RELEASE (compile), org.springframework:spring-context:jar:3.1.1.RELEASE (compile), org.springframework:spring-core:jar:3.1.1.RELEASE (compile), org.springframework:spring-test:jar:3.1.1.RELEASE (test), org.springframework:spring-web:jar:3.1.1.RELEASE (compile), org.apache.httpcomponents:httpclient:jar:4.1.1 (test), org.codehaus.jackson:jackson-mapper-asl:jar:1.9.6 (compile), org.springframework:spring-test-mvc:jar:1.0.0.BUILD-SNAPSHOT (test), junit:junit:jar:4.10 (test), org.mockito:mockito-all:jar:1.9.0 (test), org.hamcrest:hamcrest-all:jar:1.1 (compile), org.slf4j:slf4j-api:jar:1.6.1 (compile), org.slf4j:slf4j-log4j12:jar:1.6.1 (compile), log4j:log4j:jar:1.2.16 (compile), log4j:apache-log4j-extras:jar:1.1 (compile)]: Failed to read artifact descriptor for org.springframework:spring-test-mvc:jar:1.0.0.BUILD-SNAPSHOT: Could not transfer artifact org.springframework:spring-test-mvc:pom:1.0.0.BUILD-SNAPSHOT from/to nexus (https://example.com/nexus/content/groups/all): Not authorized, ReasonPhrase:Unauthorized. -> [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
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :grc-webclient-services
我的用户的settings.xml中有如下内容:
<settings>
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>https://example.com/nexus/content/groups/all</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>nexus</id>
<properties>
<sonar.jdbc.url>jdbc:mysql://localhost:3306/sonardb?useUnicode=true&characterEncoding=utf8</sonar.jdbc.url>
<sonar.jdbc.driverClassName>com.mysql.jdbc.Driver</sonar.jdbc.driverClassName>
<sonar.jdbc.username>sonarusername</sonar.jdbc.username>
<sonar.jdbc.password>sonarpw</sonar.jdbc.password>
<sonar.host.url>http://localhost:9000/</sonar.host.url>
</properties>
<repositories>
<repository>
<id>central</id>
<url>https://example.com/nexus/content/groups/all</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>https://example.com/nexus/content/groups/all</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<servers>
<server>
<id>all</id>
<username>user</username>
<password>pw</password>
</server>
<server>
<id>releases</id>
<username>user</username>
<password>pw</password>
</server>
<server>
<id>snapshots</id>
<username>user</username>
<password>pw</password>
</server>
</servers>
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
</settings>
当我使用 wget 从这个 Nexus 下载工件时,我必须添加 --no-check-certificate 密钥来跳过服务器的证书(因为它是自签名的),然后我可以使用 wget 下载它。
我违反了 Java 密钥 -Dsun.security.ssl.allowUnsafeRenegotiation=true,但它根本没有改变任何东西。
之后我发现这可能不是自签名证书问题,因为我已使用命令将服务器的证书添加到受信任列表中:
keytool -keystore $JAVA_HOME/jre/lib/security/cacerts -import -file certificate.cer
有人知道如何在构建时从 Nexus 下载工件吗?
【问题讨论】:
-
俄语部分有点难以理解 :-) 但是你试过this guide吗?
-
我不确定前面的评论是否涵盖了您的需求。如果只是使用自签名证书访问服务器上的存储库,将证书添加到 Java 密钥库就足够了。
-
我已经添加了一个。也许不是以正确的方式。如何检查证书是否已添加?此外,我在连接到 Nexus 时使用 WireShark 分析了流量,我看到了带有 SSL Content-type: Alert (21) 的 Encription Alert 包。
-
maven 设置文件的“服务器”部分缺少“nexus”条目。我假设您已启用基本身份验证?在这种情况下,您需要指定 Maven 在访问 nexus 时应使用的用户名和密码
-
是的,你是对的。我几个小时前解决了这个问题,但由于声誉限制无法回答我的问题。会尽快回答。
标签: java maven https certificate nexus