Created
September 19, 2025 13:58
-
-
Save lholmquist/281b139db727504e833c76e255e975cb 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 https://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
<profiles> | |
<profile> | |
<id>myProfile</id> | |
<pluginRepositories> | |
<pluginRepository> | |
<id>redhat-ga-all-repository</id> | |
<name>Red Hat GA (all)</name> | |
<url>https://maven.repository.redhat.com/ga/</url> | |
</pluginRepository> | |
</pluginRepositories> | |
<repositories> | |
<repository> | |
<id>redhat-ga-all-repository</id> | |
<name>Red Hat GA (all)</name> | |
<url>https://maven.repository.redhat.com/ga/</url> | |
</repository> | |
<repository> | |
<id>apache-snapshot-repository-group</id> | |
<name>Apache Snapshot Repository Group</name> | |
<url>https://repository.apache.org/content/groups/snapshots/</url> | |
</repository> | |
<repository> | |
<id>apache-public-repository-group</id> | |
<name>Apache Public Repository Group</name> | |
<url>https://repository.apache.org/content/groups/public/</url> | |
</repository> | |
<repository> | |
<id>jboss.community</id> | |
<name>JBoss Community repository</name> | |
<url>https://repository.jboss.org/nexus/content/repositories/public/</url> | |
</repository> | |
</repositories> | |
</profile> | |
</profiles> | |
<activeProfiles> | |
<activeProfile>myProfile</activeProfile> | |
</activeProfiles> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment