Advertisement
Guest User

Untitled

a guest
Jul 18th, 2017
595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  4.          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5.          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  6.  
  7.   <activeProfiles>
  8.     <activeProfile>securecentral</activeProfile>
  9.   </activeProfiles>
  10.  
  11.   <profiles>
  12.     <profile>
  13.       <id>securecentral</id>
  14.       <repositories>
  15.         <repository>
  16.           <id>central</id>
  17.           <url>http://repo1.maven.org/maven2</url>
  18.           <releases>
  19.             <enabled>true</enabled>
  20.           </releases>
  21.         </repository>
  22.       </repositories>
  23.       <pluginRepositories>
  24.         <pluginRepository>
  25.           <id>central</id>
  26.           <url>http://repo1.maven.org/maven2</url>
  27.           <releases>
  28.             <enabled>true</enabled>
  29.           </releases>
  30.         </pluginRepository>
  31.       </pluginRepositories>
  32.     </profile>
  33.    
  34.   </profiles>
  35.  
  36.   <proxies>
  37.    <proxy>
  38.       <active>true</active>
  39.       <protocol>http</protocol>
  40.       <host>***.***.***.***</host>
  41.       <port>****</port>
  42.       <username>******</username>
  43.       <password>******</password>
  44.       <nonProxyHosts>www.google.com|*.example.com</nonProxyHosts>
  45.     </proxy>
  46.   </proxies>
  47. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement