-
Notifications
You must be signed in to change notification settings - Fork 0
/
ossrh.xml
29 lines (26 loc) · 1.01 KB
/
ossrh.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
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 https://maven.apache.org/xsd/settings-1.1.0.xsd">
<!-- https://issues.sonatype.org/browse/OSSRH-65498 -->
<!-- https://central.sonatype.org/pages/ossrh-guide.html#deployment -->
<!-- https://central.sonatype.org/pages/working-with-pgp-signatures.html -->
<!-- https://central.sonatype.org/pages/apache-maven.html -->
<servers>
<server>
<id>ossrh</id>
<username>stornado</username>
<password>${ossrh.password}</password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<properties>
<altDeploymentRepository>ossrh::https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</altDeploymentRepository>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>ossrh</activeProfile>
</activeProfiles>
</settings>