-
Notifications
You must be signed in to change notification settings - Fork 24
/
github.settings.xml
43 lines (43 loc) · 1.87 KB
/
github.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
<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">
<servers>
<server>
<id>nexus-release</id>
<username>${env.ARTIFACT_REGISTRY_USER}</username>
<password>${env.ARTIFACT_REGISTRY_PASSWORD}</password>
</server>
<server>
<id>nexus-snapshot</id>
<username>${env.ARTIFACT_REGISTRY_USER}</username>
<password>${env.ARTIFACT_REGISTRY_PASSWORD}</password>
</server>
<server>
<id>gpg.passphrase</id>
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
</server>
</servers>
<pluginGroups>
<pluginGroup>org.sonarsource.scanner.maven</pluginGroup>
</pluginGroups>
<profiles>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.login>${env.SONAR_TOKEN}</sonar.login>
<sonar.projectKey>sfeir-open-source_sonar-clover</sonar.projectKey>
<sonar.organization>sfeir-open-source</sonar.organization>
<sonar.branch.name>${env.GITHUB_REF}</sonar.branch.name>
<sonar.analysis.buildNumber>${env.GITHUB_RUN_NUMBER}</sonar.analysis.buildNumber>
<sonar.analysis.pipeline>${env.GITHUB_RUN_ID}</sonar.analysis.pipeline>
<sonar.analysis.sha1>${env.GITHUB_SHA}</sonar.analysis.sha1>
<sonar.analysis.repository>${env.GITHUB_REPOSITORY}</sonar.analysis.repository>
</properties>
</profile>
</profiles>
</settings>