Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settings_with_pat.xml.erb « group « maven « package_managers « fixtures « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 611c232819fb1242de2c09daa2931c0bfc66ba8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
    <servers>
      <server>
        <id><%= package_project.name %></id>
        <configuration>
          <httpHeaders>
            <property>
              <name>Private-Token</name>
              <value><%= personal_access_token %></value>
            </property>
          </httpHeaders>
        </configuration>
      </server>
    </servers>
</settings>