-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsettings_example.xml
More file actions
40 lines (35 loc) · 1.12 KB
/
settings_example.xml
File metadata and controls
40 lines (35 loc) · 1.12 KB
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
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>central</id>
<url>https://repo.maven.apache.org/maven2/</url>
<mirrorOf>maven-central</mirrorOf>
</mirror>
</mirrors>
<servers>
<server>
<id>central</id>
<username></username>
<password></password>
</server>
</servers>
<profiles>
<profile>
<id>central-repository</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>maven-central</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>central-repository</activeProfile>
</activeProfiles>
</settings>