-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci_settings.xml
37 lines (37 loc) · 1.46 KB
/
ci_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
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<proxies>
<proxy>
<id>lyon1-http_proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy.univ-lyon1.fr</host>
<port>3128</port>
<nonProxyHosts>localhost|127.0.0.1|*.univ-lyon1.fr|docker</nonProxyHosts>
</proxy>
<proxy>
<id>lyon1-HTTPS_PROXY</id>
<active>true</active>
<protocol>HTTPS</protocol>
<host>proxy.univ-lyon1.fr</host>
<port>3128</port>
<nonProxyHosts>localhost|127.0.0.1|*.univ-lyon1.fr|docker</nonProxyHosts>
</proxy>
<proxy>
<id>lyon1-https_proxy</id>
<active>true</active>
<protocol>https</protocol>
<host>proxy.univ-lyon1.fr</host>
<port>3128</port>
<nonProxyHosts>localhost|127.0.0.1|*.univ-lyon1.fr|docker</nonProxyHosts>
</proxy>
<proxy>
<id>lyon1-HTTP_PROXY</id>
<active>true</active>
<protocol>HTTP</protocol>
<host>proxy.univ-lyon1.fr</host>
<port>3128</port>
<nonProxyHosts>localhost|127.0.0.1|*.univ-lyon1.fr|docker</nonProxyHosts>
</proxy>
</proxies>
</settings>