Last active
January 31, 2018 13:11
-
-
Save monodot/7233ebf05497a93993afc8853739f0d6 to your computer and use it in GitHub Desktop.
Settings file to configure Maven to pull artifacts from Red Hat repositories - for JBoss Fuse and Fuse Integration Services (FIS). See https://developers.redhat.com/products/fuse/hello-world/
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
<?xml version="1.0"?> | |
<!-- See also: https://access.redhat.com/documentation/en-us/red_hat_jboss_fuse/6.3/single/developing_and_deploying_applications/index#Develop --> | |
<settings> | |
<profiles> | |
<profile> | |
<id>extra-repos</id> | |
<activation> | |
<activeByDefault>true</activeByDefault> | |
</activation> | |
<repositories> | |
<repository> | |
<id>redhat-ga-repository</id> | |
<url>https://maven.repository.redhat.com/ga</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>redhat-ea-repository</id> | |
<url>https://maven.repository.redhat.com/earlyaccess/all</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>jboss-public</id> | |
<name>JBoss Public Repository Group</name> | |
<url>https://repository.jboss.org/nexus/content/groups/public/</url> | |
</repository> | |
</repositories> | |
<pluginRepositories> | |
<pluginRepository> | |
<id>redhat-ga-repository</id> | |
<url>https://maven.repository.redhat.com/ga</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
</pluginRepository> | |
<pluginRepository> | |
<id>redhat-ea-repository</id> | |
<url>https://maven.repository.redhat.com/earlyaccess/all</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
</pluginRepository> | |
<pluginRepository> | |
<id>jboss-public</id> | |
<name>JBoss Public Repository Group</name> | |
<url>https://repository.jboss.org/nexus/content/groups/public</url> | |
</pluginRepository> | |
</pluginRepositories> | |
</profile> | |
</profiles> | |
<activeProfiles> | |
<activeProfile>extra-repos</activeProfile> | |
</activeProfiles> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment