Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an FTP where I would like to have my personal Maven repository, I would like my artifacts to be installed to that remote folder, how can achieve that?

Thanks, Adam.

share|improve this question

1 Answer

up vote 1 down vote accepted

Use altDeploymentRepository configuration property of maven-deploy-plugin (see here).

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-deploy-plugin</artifactId>
  <version>2.5</version>
  <configuration>
    <altDeploymentRepository>your-repository-url</altDeploymentRepository>
  </configuration>
</plugin>
share|improve this answer
Assuming I add this to my default parent pom, and all works fine from my machine. Next someone else which have access to my sources, on their own machine, installs the project, and they don't have the repository details in their settings.xml, do you have any idea what will happened? – TacB0sS Apr 25 '11 at 12:45
1  
He won't be able to deploy the project to your repository. He will still be able to build it locally with mvn install. – weekens Apr 25 '11 at 13:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.