-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsettings.xml
73 lines (69 loc) · 2.02 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!--
|
| Novartis Maven Settings
| 2024-07-09
|
| This settings.xml contains the proxy settings necessary to reach the KNIME Update Sites
| as well as the locally mirror Maven channels.
-->
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>usca-artifactory</id>
<mirrorOf>external:*</mirrorOf>
<url>https://repo.nibr.novartis.net/artifactory/public</url>
</mirror>
</mirrors>
<proxies>
<proxy>
<id>httpproxy</id>
<active>true</active>
<protocol>http</protocol>
<host>nibr-proxy.global.nibr.novartis.net</host>
<port>2011</port>
<nonProxyHosts>repo.nibr.novartis.net|novartis.net|novartis.intra</nonProxyHosts>
</proxy>
<proxy>
<id>httpsproxy</id>
<active>true</active>
<protocol>https</protocol>
<host>nibr-proxy.global.nibr.novartis.net</host>
<port>2011</port>
<nonProxyHosts>repo.nibr.novartis.net|novartis.net|novartis.intra</nonProxyHosts>
</proxy>
</proxies>
<profiles>
<profile>
<id>novartis</id>
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>novartis</activeProfile>
</activeProfiles>
</settings>