> -----Original Message----- > From: Vikas Phonsa [mailto:[EMAIL PROTECTED] > Sent: Friday, October 17, 2003 1:11 PM > To: 'Maven Users List' > Subject: RE: Getting dependencies from mulitple repositories > > Guys, > > Thanks for ur replies. I'm new to Maven and the repository system and > might > be doing something dumb. But Pls help me understand this. Whenever I have > used repositories with ant or my ide I had to specify a string like this : > :pserver:[EMAIL PROTECTED]:/home/cvspublic > > And maven.repo.remote is supposed to be supplied with regular http URLs > only. So I'm confused. What is the difference between giving values to > maven.repo.remote as URL and specifying the pserver string in the > <repository> element of the project.xml.
The repository element in the project.xml is referring to your project's repository. In an unfortunate overloading of the word "repository" you project's dependencies are expected to be housed in a repository. However, this latter repository is not a CVS repository. It *has* to be accessible via the HTTP protocol. What's more, a certain directory structure at that location is assumed (see http://maven.apache.org/reference/user-guide.html#Remote%20Repository%20Layout). You may find the articles listed at http://maven.apache.org/misc/articles.html useful. <snip/> > Thanks > > Vikas > Sri --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
