-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44f88b5
commit dc5b046
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |