Installation Guide for Oracle Self-Service E-Billing > Configuring Oracle WebLogic > Process of Repackaging the GNU Lesser General Public License >
Setting Up a Proxy Maven Configuration
If your computer does not have direct access to the Internet, then set up a proxy in the Maven configuration. This task is a step in Process of Repackaging the GNU Lesser General Public License To set up a proxy Maven configuration
- Edit the
settings.xml file, found in the following file:
- Go to the following directory:
- UNIX.
%M2_HOME%/conf
- Windows.
%M2_HOME%\conf
- Add the following lines to the appropriate section of the file:
<settings>
.
.
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>www- YourCompanyproxy.com </host>
<port>80</port>
<nonProxyHosts>localhost|*. YourCompanyX.com | YourCompanyY.com | YourCompanyZ.com </nonProxyHosts>
</proxy>
</proxies>
.
.
</settings>
where:
- YourCompanyproxy.com is your company proxy site.
- YourCompanyX.com, YourCompanyY.com, and YourCompanyZ.com are your local host sites.
|