Maven Could not resolve dependencies (Return code is: 409 , ReasonPhrase:Conflict)

后端 未结 5 549
北海茫月
北海茫月 2021-01-18 20:22

Failed to execute goal on project lcms.web:

    Could not resolve dependencies for project lcms:lcms.web:war:0.0.1-SNAPSHOT: 
           


        
5条回答
  •  时光说笑
    2021-01-18 21:13

    It seems that you are trying to resolve RELEASE artifact from a SNAPSHOT repository, therefore Artifactory is sending an error (409 conflict).

    You should direct your build to 'libs-releases' virtual repository, or any other virtual repository that holds only releases, so only repositories that hold release artifacts will be involved in the process of RELEASE artifact resolution

    You can read here more about resolution from Artifactory Maven repositories

提交回复
热议问题