Last active
December 17, 2015 16:59
-
-
Save tristantarrant/5643041 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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"> | |
| <localRepository/> | |
| <interactiveMode/> | |
| <usePluginRegistry/> | |
| <offline/> | |
| <proxies/> | |
| <profiles> | |
| <profile> | |
| <id>jboss-public-repository</id> | |
| <repositories> | |
| <repository> | |
| <id>jboss-public-repository-group</id> | |
| <name>JBoss Public Maven Repository Group</name> | |
| <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url> | |
| <layout>default</layout> | |
| <releases> | |
| <enabled>true</enabled> | |
| <updatePolicy>never</updatePolicy> | |
| </releases> | |
| <snapshots> | |
| <enabled>true</enabled> | |
| <updatePolicy>never</updatePolicy> | |
| </snapshots> | |
| </repository> | |
| </repositories> | |
| <pluginRepositories> | |
| <pluginRepository> | |
| <id>jboss-public-repository-group</id> | |
| <name>JBoss Public Maven Repository Group</name> | |
| <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url> | |
| <layout>default</layout> | |
| <releases> | |
| <enabled>true</enabled> | |
| <updatePolicy>never</updatePolicy> | |
| </releases> | |
| <snapshots> | |
| <enabled>true</enabled> | |
| <updatePolicy>never</updatePolicy> | |
| </snapshots> | |
| </pluginRepository> | |
| </pluginRepositories> | |
| </profile> | |
| <!-- Include early access of application server and other products --> | |
| <profile> | |
| <id>redhat-earlyaccess-repository</id> | |
| <repositories> | |
| <repository> | |
| <id>redhat-earlyaccess-repository-group</id> | |
| <name>Red Hat early access repository</name> | |
| <url>http://maven.repository.redhat.com/earlyaccess/all/</url> | |
| <layout>default</layout> | |
| <releases> | |
| <enabled>true</enabled> | |
| <updatePolicy>never</updatePolicy> | |
| </releases> | |
| <snapshots> | |
| <enabled>true</enabled> | |
| <updatePolicy>never</updatePolicy> | |
| </snapshots> | |
| </repository> | |
| </repositories> | |
| </profile> | |
| </profiles> | |
| <activeProfiles> | |
| <activeProfile>jboss-public-repository</activeProfile> | |
| <activeProfile>redhat-earlyaccess-repository</activeProfile> | |
| </activeProfiles> | |
| </settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment