我正在尝试使用 Jenkins 管道中的工件部署阶段将工件上传到 Nexus 存储库。为此,我向 Jenkins 提供了 Nexus 凭据和找到存储库的路径。但是,此阶段失败并出现错误“连接被拒绝连接”。
但是,我可以在http://localhost:8081/nexus上访问 Nexus 。
下面是 pipeline_config.yml 文件中使用的代码。
artifactDeployment:
nexus:
version: nexus2
url: 'http://localhost:8081/nexus/'
repository: myrepo
credentialsId: 'nexus'
additionalClassifiers:
- type: jar
classifier: classes
有人可以建议解决这个问题吗?