Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Override maven release repository durning deploy

I am working on an open source library and want to have releases sent to an internal artifactory server. I have been using maven's distributionManagement and overriding altDeploymentRepository to point to the internal server (so its never in the pom). This works fine when I do deploy:deploy but when I use the maven release plugin this seems to get ignored.

mvn clean -DaltDeploymentRepository=central::default::internalhost deploy ## works
mvn clean -DaltDeploymentRepository=central::default::internalhost release:perform ## fails, doesn't pick up this setting

How can I override the repository via command line when the release plugin runs deploy?

like image 662
ekaqu Avatar asked Oct 31 '12 17:10

ekaqu


2 Answers

Use

altReleaseDeploymentRepository

It has the same syntaxes than altDeploymentRepository

More in: https://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html

like image 135
pabloa98 Avatar answered Oct 31 '22 08:10

pabloa98


mvn release:perform -Darguments=-DaltDeploymentRepository=myvalue

the trick is: '-Dargument'

Valid resolution is in yorkw comment (for maven-deploy-plugin in version 2.7) When you use higher version of maven-deploy-plugin (e.g. 2.8) then use parameter altReleaseDeploymentRepository.

maven-deploy-plugin doc

like image 6
Dariusz Skrudlik Avatar answered Oct 31 '22 08:10

Dariusz Skrudlik