hi,

maven would first search in your maven local repository, if it's not exist,
maven would download from http://www.ibiblio.org/maven/ or any link
described in maven.repo.remote, then make a copy of the downloaded jar to
your local repository. So the next time you build the project maven would
search in your local repo.
Thus, for new libraries, you have no choice, you must download from remote
repo,
this is what i've added in my project.xml
<dependency>
      <groupId>struts</groupId>
      <artifactId>struts</artifactId>
      <version>1.1</version>
      <url>http://jakarta.apache.org/struts/</url>
      <properties>
        <war.bundle.jar>true</war.bundle.jar>
      </properties>
    </dependency>

i hope it'll help


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to