Advertisement
Guest User

Settings.xml

a guest
Aug 8th, 2011
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.80 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5.  
  6.  
  7.     <profiles>
  8.         <profile>
  9.             <id>jboss-public-repository-group</id>
  10.             <repositories>
  11.                 <repository>
  12.                     <id>jboss-public-repository-group</id>
  13.                     <name>JBoss Public Repository Group</name>
  14.                     <url>https://repository.jboss.org/nexus/content/groups/public/</url>
  15.                     <layout>default</layout>
  16.                     <releases>
  17.                         <enabled>true</enabled>
  18.                         <updatePolicy>never</updatePolicy>
  19.                     </releases>
  20.                     <snapshots>
  21.                         <enabled>true</enabled>
  22.                         <updatePolicy>never</updatePolicy>
  23.                     </snapshots>
  24.                 </repository>
  25.             </repositories>
  26.             <pluginRepositories>
  27.                 <pluginRepository>
  28.                     <id>jboss-public-repository-group</id>
  29.                     <name>JBoss Public Repository Group</name>
  30.                     <url>https://repository.jboss.org/nexus/content/groups/public/</url>
  31.                     <releases>
  32.                         <enabled>true</enabled>
  33.                     </releases>
  34.                     <snapshots>
  35.                         <enabled>true</enabled>
  36.                     </snapshots>
  37.                 </pluginRepository>
  38.             </pluginRepositories>
  39.         </profile>
  40.     </profiles>
  41.    
  42.     <activeProfiles>
  43.         <activeProfile>jboss-public-repository-group</activeProfile>
  44.     </activeProfiles>
  45.  
  46. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement