Add information about setting web proxies for maven to install docs
-------------------------------------------------------------------

                 Key: DS-461
                 URL: http://jira.dspace.org/jira/browse/DS-461
             Project: DSpace 1.x
          Issue Type: Improvement
          Components: Documentation
            Reporter: Stuart Lewis
            Assignee: Jeffrey Trimble
             Fix For: 1.6.0


Add information about setting web proxy settings for maven, as this stings a 
lot of people.

See: http://maven.apache.org/guides/mini/guide-proxies.html


---

Configuring a proxy

You can configure a proxy to use for some or all of your HTTP requests in Maven 
2.0. The username and password are only required if your proxy requires basic 
authentication (note that later releases may support storing your passwords in 
a secured keystore - in the mean time, please ensure your settings.xml file 
(usually ${user.home}/.m2/settings.xml) is secured with permissions appropriate 
for your operating system).

<settings>
  .
  .
  <proxies>
   <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxy.somewhere.com</host>
      <port>8080</port>
      <username>proxyuser</username>
      <password>somepassword</password>
      <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
    </proxy>
  </proxies>
  .
  .
</settings>



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel

Reply via email to