|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + JBoss, Home of Professional Open Source |
| 4 | + Copyright 2014, Red Hat, Inc. and/or its affiliates, and individual |
| 5 | + contributors by the @authors tag. See the copyright.txt in the |
| 6 | + distribution for a full listing of individual contributors. |
| 7 | +
|
| 8 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | + you may not use this file except in compliance with the License. |
| 10 | + You may obtain a copy of the License at |
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
| 17 | +--> |
| 18 | +<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" |
| 19 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> |
| 21 | + |
| 22 | + <!-- proxies |
| 23 | + This is a list of proxies which can be used on this machine to connect to the network. |
| 24 | + Unless otherwise specified (by system property or command-line switch), the first proxy |
| 25 | + specification in this list marked as active will be used.If you are accessing network |
| 26 | + via a proxy server, Un-comment the proxy options and fill in your proxy server detail. |
| 27 | + --> |
| 28 | + <proxies> |
| 29 | + <!-- proxy |
| 30 | + Specification for one proxy, to be used in connecting to the network. |
| 31 | +
|
| 32 | + <proxy> |
| 33 | + <id>optional</id> |
| 34 | + <active>true</active> |
| 35 | + <protocol>http</protocol> |
| 36 | + <username>proxyuser</</username> |
| 37 | + <password>proxypass</password> |
| 38 | + <host>proxy.host.net</host> |
| 39 | + <port>80</port> |
| 40 | + <nonProxyHosts>local.net|some.host.com</nonProxyHosts> |
| 41 | + </proxy> |
| 42 | + --> |
| 43 | + </proxies> |
| 44 | + |
| 45 | + <profiles> |
| 46 | + |
| 47 | + <!-- Configure the Instructor Nexus repository --> |
| 48 | + <profile> |
| 49 | + <id>instructor-repository</id> |
| 50 | + <repositories> |
| 51 | + <repository> |
| 52 | + <id>instructor-nexus-repository</id> |
| 53 | + <url>http://<INSTRUCTOR_IP>:8081/content/groups/public/</url> |
| 54 | + <releases> |
| 55 | + <enabled>true</enabled> |
| 56 | + </releases> |
| 57 | + <snapshots> |
| 58 | + <enabled>false</enabled> |
| 59 | + </snapshots> |
| 60 | + </repository> |
| 61 | + </repositories> |
| 62 | + <pluginRepositories> |
| 63 | + <pluginRepository> |
| 64 | + <id>instructor-plugin-repository</id> |
| 65 | + <url>http://<INSTRUCTOR_IP>:8081/content/groups/public/</url> |
| 66 | + <releases> |
| 67 | + <enabled>true</enabled> |
| 68 | + </releases> |
| 69 | + <snapshots> |
| 70 | + <enabled>false</enabled> |
| 71 | + </snapshots> |
| 72 | + </pluginRepository> |
| 73 | + </pluginRepositories> |
| 74 | + </profile> |
| 75 | + |
| 76 | + </profiles> |
| 77 | + |
| 78 | + <activeProfiles> |
| 79 | + <!-- Make the repositories active by default --> |
| 80 | + <activeProfile>instructor-repository</activeProfile> |
| 81 | + </activeProfiles> |
| 82 | + |
| 83 | +</settings> |
0 commit comments