Skip to content

Commit

Permalink
Merge pull request #66 from chengfang/jboss.repo.65
Browse files Browse the repository at this point in the history
Issue 65 Add JBoss Public Repository Group to project maven settings …
  • Loading branch information
ropalka authored Sep 21, 2023
2 parents 216861b + 22d8a88 commit 50ba045
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<version.org.ow2.asm>9.5</version.org.ow2.asm>
<version.org.wildfly.common>1.6.0.Final</version.org.wildfly.common>
<version.org.wildfly.security>2.2.0.Final</version.org.wildfly.security>
<maven.repository.url>https://repository.jboss.org/nexus/content/groups/public/</maven.repository.url>
</properties>

<build>
Expand Down Expand Up @@ -166,4 +167,34 @@
</dependency>
</dependencies>

<repositories>
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>${maven.repository.url}</url>
<layout>default</layout>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>${maven.repository.url}</url>
</pluginRepository>
</pluginRepositories>
</project>

0 comments on commit 50ba045

Please sign in to comment.