I have been trying to publish an artifact of a java module (jar) to Azure Artifact and was getting an error 404. After debugging for a while i have realised my semantic version was breaking the URL.
1.0.2-beta1+20191202
The + indicates meta data as part of the semantic version syntax. At the same time he + breaks the URL that Azure creates to upload the artifact.
Here is a sample of the URL that Azure creates:
The pluses in the version are causing a 404 error to happen.
Seems like a missing feature but would appreciate if there is a workaround meanwhile this is actually addressed.