I am performing the following command: mvn deploy
.
Some packages already exist, but some failed to upload so I wish to deploy the missing ones.
However, I get the following error:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:3.1.1:deploy (default-deploy) on project myproject:
Failed to deploy artifacts: Could not transfer artifact my.artifact:pom:1.3.4 from/to azure-dev (url.pom).
transfer failed for url.pom:
status: 409 Conflict - The feed 'dev' already contains file 'my.artifacts-1.3.4.pom' in package ....
The error message is clear, but after thorough searching, I cannot for the life of me find a way to simply skip deploying the existing ones and just deploy the missing ones.
Is there any way of solving this?
I've read the Azure Artifacts documentation and found nothing. Aside from that, I've checked all the possible settings in the DevOps portal relevant to Artifacts and there's nothing that would help my case.