-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.xml
40 lines (39 loc) · 1.04 KB
/
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
<settings>
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://asp.labneosoft.fr:8081/repository/maven-central/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>nexus</id>
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases><enable>true</enable></releases>
<snapshots><enable>true</enable></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases><enable>true</enable></releases>
<snapshots><enable>true</enable></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
<servers>
<server>
<id>nexus</id>
<username>deploy-user</username>
<password>user</password>
</server>
</servers>
</settings>