SHOW:
|
|
- or go back to the newest paste.
1 | <?xml version="1.0" encoding="UTF-8"?> | |
2 | <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
4 | xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
5 | <localRepository>D:\Development\Work\Java\_m2repository</localRepository> | |
6 | <pluginGroups/> | |
7 | <proxies/> | |
8 | <servers> | |
9 | <server> | |
10 | <id>MySnapshots</id> | |
11 | <username>*****</username> | |
12 | <password>*****</password> | |
13 | </server> | |
14 | </servers> | |
15 | <mirrors/> | |
16 | <profiles> | |
17 | <profile> | |
18 | <id>MyProfile</id> | |
19 | <repositories> | |
20 | <repository> | |
21 | <id>MySnapshots</id> | |
22 | <name>My Snapshots</name> | |
23 | <url>http://localhost:8081/nexus/content/repositories/MySnapshots</url> | |
24 | <snapshots> | |
25 | <enabled>true</enabled> | |
26 | </snapshots> | |
27 | </repository> | |
28 | </repositories> | |
29 | </profile> | |
30 | </profiles> | |
31 | <activeProfiles> | |
32 | <activeProfile>MyProfile</activeProfile> | |
33 | </activeProfiles> | |
34 | </settings> |