-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
settings-template.xml
45 lines (36 loc) · 1.62 KB
/
settings-template.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
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<!--
enabled Whether to use this repository for downloading this type
of artifact. updatePolicy The frequency for downloading updates - can be
"always", "daily" (default), "interval:XXX" (in minutes) or "never" (only
if it doesn't exist locally). checksumPolicy What to do when verification
of an artifact checksum fails - warn, fail, etc. Valid values are "fail"
or "warn".
-->
<servers>
<server>
<id>sonatype-server</id>
<username>bsorrentino</username>
<password>${env.SONATYPE_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<id>sonatype</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<release.repo.id>sonatype-server</release.repo.id>
<release.repo.url>https://oss.sonatype.org/service/local/staging/deploy/maven2</release.repo.url>
<snapshot.repo.id>sonatype-server</snapshot.repo.id>
<snapshot.repo.url>https://oss.sonatype.org/content/repositories/snapshots</snapshot.repo.url>
<group.repo.url>http://oss.sonatype.org/content/groups/public</group.repo.url>
</properties>
</profile>
</profiles>
<proxies>
</proxies>
</settings>