Created
September 14, 2012 14:17
-
-
Save pauldijou/3722172 to your computer and use it in GitHub Desktop.
Maven settings for JBoss repo
This file contains 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
<profiles> | |
<profile> | |
<id>jboss-public-repository</id> | |
<repositories> | |
<repository> | |
<id>jboss-public-repository-group</id> | |
<name>JBoss Public Repository Group</name> | |
<url>http://repository.jboss.org/nexus/content/groups/public/</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 Repository Group</name> | |
<url>http://repository.jboss.org/nexus/content/groups/public/</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</pluginRepository> | |
</pluginRepositories> | |
</profile> | |
</profiles> | |
<activeProfiles> | |
<activeProfile>jboss-public-repository</activeProfile> | |
</activeProfiles> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment