forked from hsperker/product-knowledge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.xml
39 lines (39 loc) · 1.45 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Settings for building complete product.
To interact with the maven repos, you need to put your GITHUB credentials
into the environment variables GITHUB_ACTOR and GITHUB_TOKEN.
Use the -s switch with the maven command to use these settings.
See copyright notice in the top folder
See authors file in the top folder
See license file in the top folder
-->
<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">
<servers>
<!-- EDC SNAPSHOTS -->
<server>
<id>edc</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
<!-- DSC SNAPSHOTS -->
<server>
<id>ka-dsc-snapshots</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
<!-- Catena-X NG: Github Packages -->
<server>
<id>github</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
<server>
<id>esmf</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
</servers>
</settings>