-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
settings.xml
33 lines (31 loc) · 1.03 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
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0
https://maven.apache.org/xsd/settings-1.2.0.xsd">
<servers>
<server>
<id>deegree-snapshots</id>
<username>${repo.username}</username>
<password>${repo.password}</password>
</server>
<server>
<id>deegree-releases</id>
<username>${repo.username}</username>
<password>${repo.password}</password>
</server>
</servers>
<mirrors>
<mirror>
<id>jaspersoft-third-party-mirror</id>
<mirrorOf>jaspersoft-third-party</mirrorOf>
<url>http://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts/</url>
<blocked>false</blocked>
</mirror>
<mirror>
<id>terracotta-releases</id>
<mirrorOf>terracotta-releases</mirrorOf>
<url>http://www.terracotta.org/download/reflector/releases/</url>
<blocked>false</blocked>
</mirror>
</mirrors>
</settings>