- Notifications
You must be signed in to change notification settings - Fork 849
/
Copy pathsettings.xml
42 lines (39 loc) · 1.16 KB
/
settings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<settings
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd"
xmlns="http://maven.apache.org/SETTINGS/1.1.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!--
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>adc-proxy.oracle.com</host>
<port>80</port>
<nonProxyHosts>maven-stage.oracle.com|www-portal-stage.oracle.com|login-stage.oracle.com|*.oraclecorp.com</nonProxyHosts>
</proxy>
</proxies>
-->
<servers>
<server>
<id>maven.oracle.com</id>
<username>{Username registered on maven.oracle.com}</username>
<password>{Add_registered_password_here}</password>
<configuration>
<basicAuthScope>
<host>ANY</host>
<port>ANY</port>
<realm>OAM 11g</realm>
</basicAuthScope>
<httpConfiguration>
<all>
<params>
<property>
<name>http.protocol.allow-circular-redirects</name>
<value>%b,true</value>
</property>
</params>
</all>
</httpConfiguration>
</configuration>
</server>
</servers>
</settings>