Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
System
Partition
Commits
d0c15911
Commit
d0c15911
authored
Aug 31, 2020
by
ethiraj krishnamanaidu
Browse files
test community maven
parent
eb0fd10e
Pipeline
#6913
failed with stages
in 1 minute and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
testing/.mvn/community-maven.settings.xml
0 → 100644
View file @
d0c15911
<settings>
<profiles>
<profile>
<!-- This profile uses the CI-Token to authenticate with the server, and is the default case -->
<id>
GitLab-Authenticate-With-Job-Token
</id>
<activation>
<activeByDefault>
true
</activeByDefault>
</activation>
<properties>
<gitlab-server>
community-maven-via-job-token
</gitlab-server>
</properties>
</profile>
<profile>
<!-- This profile uses a personal token to authenticate, which is useful for local or manual runs. The
presence of the COMMUNITY_MAVEN_TOKEN variable triggers this and overrides the CI Token
based authentication -->
<id>
GitLab-Authenticate-With-Private-Token
</id>
<activation>
<property>
<name>
env.COMMUNITY_MAVEN_TOKEN
</name>
</property>
</activation>
<properties>
<gitlab-server>
community-maven-via-private-token
</gitlab-server>
</properties>
</profile>
</profiles>
<servers>
<server>
<id>
community-maven-via-job-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Job-Token
</name>
<value>
${env.CI_JOB_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
<server>
<id>
community-maven-via-private-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Private-Token
</name>
<value>
${env.COMMUNITY_MAVEN_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
<server>
<id>
azure-auth
</id>
<configuration>
<tenant>
${env.AZURE_TENANT_ID}
</tenant>
<client>
${env.AZURE_CLIENT_ID}
</client>
<key>
${env.AZURE_CLIENT_SECRET}
</key>
<environment>
AZURE
</environment>
</configuration>
</server>
</servers>
</settings>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment