Reputation: 807
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
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