aboutsummaryrefslogtreecommitdiff
path: root/templates/.m2/settings.xml
blob: 9254468bf2d324f3f363809f220982183154c6df (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <activeProfiles>
    <activeProfile>github</activeProfile>
  </activeProfiles>

  <profiles>
    <profile>
      <id>github</id>
      <repositories>
        <repository>
          <id>central</id>
          <snapshots><enabled>true</enabled></snapshots>
          <releases><enabled>true</enabled></releases>
          <url>https://repo1.maven.org/maven2</url>
        </repository>
        <repository>
          <id>github</id>
          <name>GitHub virtyx-technologies Apache Maven Packages</name>
          <url>https://maven.pkg.github.com/virtyx-technologies/maven</url>
        </repository>
      </repositories>
    </profile>
  </profiles>

  <servers>
    <server>
      <id>github</id>
      <username>benburwell</username>
      <password>{{ pass "github-token" }}</password>
    </server>
  </servers>
</settings>