Skip to content

Instantly share code, notes, and snippets.

@abstractj
Created May 17, 2012 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abstractj/34e67fc184d749fcb734 to your computer and use it in GitHub Desktop.
Save abstractj/34e67fc184d749fcb734 to your computer and use it in GitHub Desktop.
Maven settings updates
<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">
<profiles>
<profile>
<id>jboss-public-repository</id>
<repositories>
<repository>
<id>jboss-snapshot-aerogear-repository-group</id>
<name>JBoss Snapshot repository to M4</name>
<url>https://repository.jboss.org/nexus/content/repositories/jboss_releases_staging_profile-064/</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>
</activeProfiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment