forked from steve-community/steve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis-maven-settings.xml
26 lines (26 loc) · 1.26 KB
/
.travis-maven-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
<?xml version="1.0" encoding="UTF-8"?>
<!-- The reason for the existence of this file: Some time ago, Travis CI switched to using 'google-maven-central' at
https://maven-central.storage-download.googleapis.com/repos, which is slow and does not contain recent versions
that are actually present in Maven Central. Because of this, automated Travis builds fail when the dependabot-preview
plugin discovers a new version of one of our dependencies. With this file, we add the maven central back.
Discussion: https://travis-ci.community/t/disable-google-maven-central/5301 -->
<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>maven-central</id>
<name>Maven Central</name>
<url>https://repo1.maven.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
<profiles>
<profile>
<id>default-profile</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
</profiles>
</settings>