1<?xml version="1.0" encoding="UTF-8"?>
2<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"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4  <servers>
5    <server>
6      <username>${env.JFROG_USER}</username>
7      <password>${env.JFROG_PASSWORD}</password>
8      <id>release</id>
9    </server>
10    <server>
11      <username>${env.JFROG_USER}</username>
12      <password>${env.JFROG_PASSWORD}</password>
13      <id>snapshot</id>
14    </server>
15    <server>
16      <username>${env.JFROG_USER}</username>
17      <password>${env.JFROG_PASSWORD}</password>
18      <id>plugins-release</id>
19    </server>
20    <server>
21      <username>${env.JFROG_USER}</username>
22      <password>${env.JFROG_PASSWORD}</password>
23      <id>plugins-snapshot</id>
24    </server>
25  </servers>
26  <profiles>
27    <profile>
28      <repositories>
29        <repository>
30          <snapshots>
31            <enabled>false</enabled>
32          </snapshots>
33          <id>release</id>
34          <name>libs-release</name>
35          <url>https://dependencycheck.jfrog.io/dependencycheck/libs-release</url>
36        </repository>
37        <repository>
38          <snapshots />
39          <id>snapshot</id>
40          <name>libs-snapshot</name>
41          <url>https://dependencycheck.jfrog.io/dependencycheck/libs-snapshot</url>
42        </repository>
43      </repositories>
44      <pluginRepositories>
45        <pluginRepository>
46          <snapshots>
47            <enabled>false</enabled>
48          </snapshots>
49          <id>plugins-release</id>
50          <name>plugins-release</name>
51          <url>https://dependencycheck.jfrog.io/dependencycheck/plugins-release</url>
52        </pluginRepository>
53        <pluginRepository>
54          <snapshots />
55          <id>plugins-snapshot</id>
56          <name>plugins-snapshot</name>
57          <url>https://dependencycheck.jfrog.io/dependencycheck/plugins-snapshot</url>
58        </pluginRepository>
59      </pluginRepositories>
60      <id>artifactory</id>
61    </profile>
62  </profiles>
63  <activeProfiles>
64    <activeProfile>artifactory</activeProfile>
65  </activeProfiles>
66</settings>
67