-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.xml
33 lines (31 loc) · 1.02 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
<settings>
<profiles>
<profile>
<id>github</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>github</id>
<name>GitHub Ebad Maven Packages</name>
<url>https://maven.pkg.github.com/informatique-cdc/ebad-plugin</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
</repositories>
</profile>
</profiles>
<servers>
<server>
<id>github-public</id>
<username>${env.GITHUB_USERNAME}</username>
<password>${env.GITHUB_pASSWORD}</password>
</server>
<server>
<id>github</id>
<username>${env.GITHUB_USERNAME}</username>
<password>${env.GITHUB_PASSWORD}</password>
</server>
</servers>
</settings>