I have a problem with deploying artifacts into artifactory with just one version for now.
Currently, if I deploy my artifact via mvn deploy
, always a new version is generated in artifactory e.g.
Commons-0.0.1-20131122.222911-4
Commons-0.0.1-20131122.232912-5
Commons-0.0.1-20131122.242913-6
How is it possible to only deploy ONE version (overwrite existing artifacts) e.g. Common-0.0.1-SNAPSHOT or a kind of this into artifactory via maven
?
For now I have only a <distributionManagement>
section in my pom.xml
and ID
definitions.