WARNING: This server is unstable and will be retired in the next days. If you want to keep this forum available, please request immediately a migration on the Nabble Support forum. Forums that don't receive any migration request will be deleted forever.

 « Return to Thread: How to setup a repository to get my external dependencies

How to setup a repository to get my external dependencies

by jose.nunez-zuleta :: Rate this Message:

| View in Thread

Hi to all,

I've been looking for an answer to this on the Maven and Ant documentation and mailing list with no success, so I'm posting it here; My problem is that I have setup 3 repositories in Archiva:


·         One for third party libraries (we want to use this specific versions, nothing downloaded from the Internet). Is called 'thirdparty'

·         Our proprietary software. This one doesn't have snapshots, only release. Is called 'proprietary'

·         And internal release only proxy, with all the plugin dependencies needed by Maven. Is the default internal repository that comes with Archiva. Is called 'internal'.

I already uploaded artifacts to both thirdparty and proprietary; Also internal was populated correctly using a mirror configuration in the master settings.xml file for Maven:

  <proxies>
    <proxy>
      <id>XXXXXproxy</id>
      <active>true</active>
      <protocol>http</protocol>
      <username></username>
      <password></password>
      <host>XXXX123.ZZZZ.com</host>
      <port>80</port>
      <nonProxyHosts>domain1.com|ZZZZ.com</nonProxyHosts>
    </proxy>
  </proxies>

   <mirror>
      <id>default</id>
      <mirrorOf>*</mirrorOf>
      <name>Default mirror for all artifacts in XXXX, including third party libraries</name>
      <!-- Put the fully qualified name, otherwise Maven will get terribly confused with the internal proxy! -->
      <!-Internalmain is a virtual repository in Archiva -->
      <url>http://XXXX456.ZZZZ.com:8080/archiva/repository/internalmain</url>
    </mirror>
  </mirrors>

I had set up a repository group that has the 3 of them, called 'internalmain'. Is this the right way to setup Maven to access multiple repositories or should work with repository groups?

Thanks!

--Jose


_______________________________________________

This e-mail may contain information that is confidential, privileged or otherwise protected from disclosure. If you are not an intended recipient of this e-mail, do not duplicate or redistribute it by any means. Please delete it and any attachments and notify the sender that you have received it in error. Unless specifically indicated, this e-mail is not an offer to buy or sell or a solicitation to buy or sell any securities, investment products or other financial product or service, an official confirmation of any transaction, or an official statement of Barclays. Any views or opinions presented are solely those of the author and do not necessarily represent those of Barclays. This e-mail is subject to terms available at the following link: www.barcap.com/emaildisclaimer. By messaging with Barclays you consent to the foregoing.  Barclays Capital is the investment banking division of Barclays Bank PLC, a company registered in England (number 1026167) with its registered office at 1 Churchill Place, London, E14 5HP.  This email may relate to or be sent from other members of the Barclays Group.
_______________________________________________

 « Return to Thread: How to setup a repository to get my external dependencies