forked from quarkusio/quarkus-quickstarts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-mvn-settings.xml
53 lines (52 loc) · 1.71 KB
/
azure-mvn-settings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<settings>
<mirrors>
<mirror>
<id>jboss-public-repository-group</id>
<mirrorOf>*,!quarkus-nexus-release,!quarkus-nexus-snapshot</mirrorOf>
<name>jboss</name>
<url>http://repository.jboss.org/nexus/content/groups/developer/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>quarkus</id>
<repositories>
<repository>
<id>oss-nexus-snapshot</id>
<name>OSS Snapshots</name>
<url>https://oss.sonatype.org/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<!-- 10 minutes. Or enforce refresh by using -U option to Maven -->
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>oss-nexus-snapshot</id>
<name>OSS - Snapshots</name>
<url>https://oss.sonatype.org/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<!-- 10 minutes. Or enforce refresh by using -U option to Maven -->
<updatePolicy>daily</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>quarkus</activeProfile>
</activeProfiles>
</settings>