Skip to content

Commit 4360fd7

Browse files
initial commit
1 parent 4f14c9c commit 4360fd7

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

maven/settings.xml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<servers>
5+
<server>
6+
<id>remote-repository</id>
7+
<username>${repository.username}</username>
8+
<password>${repository.password}</password>
9+
</server>
10+
</servers>
11+
<mirrors>
12+
<mirror>
13+
<id>remote-repository</id>
14+
<mirrorOf>*</mirrorOf>
15+
<url>${repository.url}</url>
16+
</mirror>
17+
</mirrors>
18+
<profiles>
19+
<profile>
20+
<id>remote-repository</id>
21+
<repositories>
22+
<repository>
23+
<id>central</id>
24+
<url>http://central</url>
25+
<releases><enabled>true</enabled></releases>
26+
<snapshots><enabled>true</enabled></snapshots>
27+
</repository>
28+
</repositories>
29+
<pluginRepositories>
30+
<pluginRepository>
31+
<id>central</id>
32+
<url>http://central</url>
33+
<releases><enabled>true</enabled></releases>
34+
<snapshots><enabled>true</enabled></snapshots>
35+
</pluginRepository>
36+
</pluginRepositories>
37+
</profile>
38+
</profiles>
39+
<activeProfiles>
40+
<activeProfile>remote-repository</activeProfile>
41+
</activeProfiles>
42+
</settings>

0 commit comments

Comments
 (0)