sanre6
sanre6

Reputation: 807

can Apache Maven be set to download jar files from an ftp?

i want maven to download custom jar files from an ftp how to set the path? and is there anyway i can combine dependencies or plugins within one element tag.i dont want to write for each dependency r plugin like importing from one external jars folder btw i am using maven plugin for eclipcse ide

thanks

Upvotes: 0

Views: 335

Answers (1)

ant
ant

Reputation: 22948

You'll have to write separate elements for plugins and dependencies in you pom whether you like it or not. If you have a custom/corporate/proprietary jars, you should setup local repository somewhere on your network or elsewhere, google repository managers such as Archiva, Nexus or Artifactory or you can install those proprietary jars to your local repository.

Upvotes: 2

Related Questions