-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.xml
43 lines (41 loc) · 1.52 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
34
35
36
37
38
39
40
41
42
43
<?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 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<activeProfiles>
<activeProfile>multiple-repos</activeProfile>
</activeProfiles>
<profiles>
<profile>
<id>multiple-repos</id>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>metanorma</id>
<name>GitHub Metanorma Apache Maven Packages</name>
<url>https://maven.pkg.github.com/metanorma/barcode4j</url>
</repository>
<!-- <repository>
<id>metanorma_mn2pdf</id>
<name>GitHub Metanorma Apache Maven Packages</name>
<url>https://maven.pkg.github.com/metanorma/mn2pdf</url>
</repository>-->
</repositories>
</profile>
</profiles>
<servers>
<server>
<id>metanorma</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
<server>
<id>metanorma_mn2pdf</id>
<username>${env.GITHUB_USERNAME}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
</servers>
</settings>