-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsettings.xml
More file actions
29 lines (25 loc) · 1.26 KB
/
Copy pathsettings.xml
File metadata and controls
29 lines (25 loc) · 1.26 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
26
27
28
29
<?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. The mirror covers what a pom cannot: plugins and extensions resolved before pom
repositories are honored, and repositories declared by the third-party projects build.ps1 clones
and compiles. Its id matches the feed name used by MavenAuthenticate@0.
`external:*` is used instead of `central` so a repository stays on the feed no matter which id
its pom gives it.
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>external:*</mirrorOf>
</mirror>
</mirrors>
</settings>