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

后端 未结 5 553
北海茫月
北海茫月 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 20:54

    From your error details,

    Failed to transfer file: http://*******/artifactory/ext-snapshot-local/lcmsdaomodel/lcms.dao.model/1.1.1/lcms.dao.model-1.1.1.pom.
    Return code is: 409 , ReasonPhrase:Conflict. -> [Help 1]
    

    You have deployed a release version of lcms.dao.model in ext-snapshot-local which is only used to deploy manual snapshot of libraries. Check artifactory documentation.

    1. If lcms.dao.model is a released artifact, then login into your artifactory and delete entry for this library in Artifacts -> Tree Browser -> ext-snapshot-local. You need to have released version of this library in your artifactory.
    2. If this is snapshot version, you need to version your library as 1.1.1-SNAPSHOT

提交回复
热议问题