Skip to content

Commit

Permalink
WFTC-133 Add JBoss Public Repository Group to project maven settings …
Browse files Browse the repository at this point in the history
…in pom.xml (#166)
  • Loading branch information
chengfang authored Aug 9, 2023
1 parent faf6356 commit 7d91ba2
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 @@ -63,6 +63,7 @@

<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.repository.url>https://repository.jboss.org/nexus/content/groups/public/</maven.repository.url>
</properties>

<build>
Expand Down Expand Up @@ -244,4 +245,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 7d91ba2

Please sign in to comment.