-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathsettings.xml
More file actions
32 lines (30 loc) · 1.28 KB
/
settings.xml
File metadata and controls
32 lines (30 loc) · 1.28 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
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<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">
<profiles>
<profile>
<!-- The build defines an optional `error-prone-fork` profile using
which the code is built against a Picnic-managed fork of Error
Prone. This fork is hosted using GitHub Packages. See
https://github.com/PicnicSupermarket/error-prone/packages. -->
<id>error-prone-fork</id>
<repositories>
<repository>
<id>error-prone-fork</id>
<url>https://maven.pkg.github.com/PicnicSupermarket/error-prone</url>
</repository>
</repositories>
</profile>
</profiles>
<servers>
<server>
<id>central</id>
<username>${env.MAVEN_CENTRAL_USER}</username>
<password>${env.MAVEN_CENTRAL_PASS}</password>
</server>
<server>
<id>error-prone-fork</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
</servers>
</settings>