2057e94f24c0c229f0653dcd6b9697973b61eba6
[oom.git] / kubernetes / policy / charts / drools / resources / config / drools / settings.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 # Copyright © 2017 Amdocs, Bell Canada, AT&T
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 -->
17
18 <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">
19
20 <!--
21   <proxies>
22           <proxy>
23               <id>http-proxy</id>
24               <active>true</active>
25               <protocol>http</protocol>
26               <host>your-proxy-host-or-ip</host>
27               <port>your-proxy-port</port>
28               <nonProxyHosts>localhost|127.0.0.1|*.svc.cluster.local|nexus</nonProxyHosts>
29           </proxy>
30           <proxy>
31               <id>https-proxy</id>
32               <active>true</active>
33               <protocol>https</protocol>
34               <host>your-proxy-host-or-ip</host>
35               <port>your-proxy-port</port>
36               <nonProxyHosts>localhost|127.0.0.1|*.svc.cluster.local|nexus</nonProxyHosts>
37           </proxy>
38       </proxies>
39 -->
40   <profiles>
41     <profile>
42       <id>policy-profile</id>
43       <activation>
44         <activeByDefault>true</activeByDefault>
45       </activation>
46
47       <repositories>
48         <repository>
49           <id>policy-nexus-snapshots</id>
50           <url>http://{{.Values.global.nexus.nameOverride}}:{{.Values.config.nexusPort}}/nexus/content/repositories/snapshots/</url>
51           <releases>
52             <enabled>false</enabled>
53             <updatePolicy>always</updatePolicy>
54           </releases>
55           <snapshots>
56             <enabled>true</enabled>
57             <updatePolicy>always</updatePolicy>
58           </snapshots>
59         </repository>
60
61         <repository>
62           <id>policy-nexus-releases</id>
63           <url>http://{{.Values.global.nexus.nameOverride}}:{{.Values.config.nexusPort}}/nexus/content/repositories/releases/</url>
64           <releases>
65             <enabled>true</enabled>
66             <updatePolicy>always</updatePolicy>
67           </releases>
68           <snapshots>
69             <enabled>false</enabled>
70             <updatePolicy>always</updatePolicy>
71           </snapshots>
72         </repository>
73       </repositories>
74
75     </profile>
76   </profiles>
77
78   <activeProfiles>
79     <activeProfile>policy-profile</activeProfile>
80   </activeProfiles>
81
82   <servers>
83     <server>
84       <id>policy-nexus-snapshots</id>
85       <username>admin</username>
86       <password>admin123</password>
87     </server>
88     <server>
89       <id>policy-nexus-releases</id>
90       <username>admin</username>
91       <password>admin123</password>
92     </server>
93   </servers>
94
95 </settings>