Skip to content

Commit a9617e2

Browse files
committed
added repositories and distro management sections
1 parent b3511ab commit a9617e2

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

pom.xml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,52 @@
4545
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4646
</properties>
4747

48+
<repositories>
49+
<!-- Prefer Maven Central to jboss.org. POM has top-to-bottom precedence. -->
50+
<repository>
51+
<id>central</id>
52+
<name>Central Repository</name>
53+
<url>http://repo.maven.apache.org/maven2</url>
54+
<releases>
55+
<enabled>true</enabled>
56+
</releases>
57+
<snapshots>
58+
<enabled>false</enabled>
59+
</snapshots>
60+
</repository>
61+
<repository>
62+
<id>snapshots-repo</id>
63+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
64+
<releases>
65+
<enabled>false</enabled>
66+
</releases>
67+
<snapshots>
68+
<enabled>true</enabled>
69+
</snapshots>
70+
</repository>
71+
<repository>
72+
<id>jboss-public-repository-group</id>
73+
<name>JBoss Public Repository Group</name>
74+
<url>http://repository.jboss.org/nexus/content/groups/public</url>
75+
<layout>default</layout>
76+
<releases>
77+
<enabled>true</enabled>
78+
<updatePolicy>never</updatePolicy>
79+
</releases>
80+
<snapshots>
81+
<enabled>true</enabled>
82+
<updatePolicy>daily</updatePolicy>
83+
</snapshots>
84+
</repository>
85+
</repositories>
86+
87+
<distributionManagement>
88+
<snapshotRepository>
89+
<id>ossrh</id>
90+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
91+
</snapshotRepository>
92+
</distributionManagement>
93+
4894
<dependencies>
4995
<dependency>
5096
<groupId>xom</groupId>

0 commit comments

Comments
 (0)