Skip to content

Commit

Permalink
EJBCLIENT-514 Add JBoss Public Repository Group to project maven sett…
Browse files Browse the repository at this point in the history
…ings in pom.xml
  • Loading branch information
chengfang committed Jul 31, 2023
1 parent f6daf90 commit 32a70ec
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
<version.org.wildfly.transaction-client>2.0.1.Final</version.org.wildfly.transaction-client>
<version.org.jacoco>0.8.10</version.org.jacoco>
<test-group>org/jboss/ejb/client</test-group>
<maven.repository.url>https://repository.jboss.org/nexus/content/groups/public/</maven.repository.url>
</properties>

<build>
Expand Down Expand Up @@ -375,6 +376,37 @@
</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>

<profiles>
<profile>
<id>jacoco</id>
Expand Down

0 comments on commit 32a70ec

Please sign in to comment.