forked from cyberark/conjur-spring-boot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mvn-settings.xml
82 lines (82 loc) · 2.42 KB
/
mvn-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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<settings>
<pluginGroups>
<pluginGroup>org.jenkins-ci.tools</pluginGroup>
</pluginGroups>
<servers>
<server>
<id>conjurinc-releases</id>
<username>${env.JFROG_USERNAME}</username>
<password>${env.JFROG_APIKEY}</password>
</server>
<server>
<id>conjurinc-snapshots</id>
<username>${env.JFROG_USERNAME}</username>
<password>${env.JFROG_APIKEY}</password>
</server>
<server>
<id>ossrh</id>
<username>${env.OSSRH_USERNAME}</username>
<password>${env.OSSRH_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>jcenter</id>
<url>https://jcenter.bintray.com/</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>conjurinc-releases</id>
<name>conjurinc-releases</name>
<url>https://conjurinc.jfrog.io/artifactory/libs-release-local</url>
</repository>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>conjurinc-snapshots</id>
<name>conjurinc-snapshots</name>
<url>https://conjurinc.jfrog.io/artifactory/libs-snapshot-local</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>plugins-release</id>
<name>plugins-release</name>
<url>https://conjurinc.jfrog.io/artifactory/plugins-release</url>
</pluginRepository>
<pluginRepository>
<snapshots />
<id>snapshots</id>
<name>plugins-snapshots</name>
<url>https://conjurinc.jfrog.io/artifactory/plugins-snapshot</url>
</pluginRepository>
<pluginRepository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
<id>artifactory</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>artifactory</activeProfile>
</activeProfiles>
</settings>