遇到这样的问题。
在 Jenkins 的帮助下,我们构建了工件 - 这里一切都很好,然后我们需要将它上传到 Nexus
接下来,在 Nexus 上,我删除了旧的工件:
curl -u {user}:{password} -X DELETE https://path.repos/repos/new/filename.zip
并上传一个新的工件
curl -u {user}:{password} --upload-file filename.zip https://path.repos/repos/new/filename.zip
但是有以下问题,在成功上传到 nexus 后 - 我启动了下一步的部署 - 这会拉出这个非常工件 - 这里出现的问题是在删除之前下载的 ARTIFACT(甚至可能被删除多次) IE。有某种缓存-首先使用。
试图做
curl -u {user}:{password} -X DELETE --silent https://path.repos/repos/new/filename.zip
它也没有帮助......我怎样才能摆脱这个?- 你不能爬到关系的引擎盖下;