-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathsettings.xml
More file actions
25 lines (22 loc) · 1.04 KB
/
Copy pathsettings.xml
File metadata and controls
25 lines (22 loc) · 1.04 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Maven settings for Central Feed Service (CFS).
Each pom.xml overrides the `central` repository so packages are served by the Azure Artifacts
feed below. This mirror also covers plugins and extensions resolved before pom repositories are
honored. Its id matches the feed name used by MavenAuthenticate@0.
CI installs this file to ~/.m2/settings.xml. For a local authenticated restore, install the
credential provider and pass this file when needed:
mvn -s settings.xml <goals>
-->
<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 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>upstream-public</id>
<name>Azure Functions public upstream feed</name>
<url>https://pkgs.dev.azure.com/azfunc/public/_packaging/upstream-public/maven/v1</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
</settings>