forked from hyperledger/fabric-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.xml
More file actions
29 lines (29 loc) · 736 Bytes
/
settings.xml
File metadata and controls
29 lines (29 loc) · 736 Bytes
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
<!--
#
# Copyright IBM Corp. All Rights Reserved.
# Copyright DTCC All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
-->
<settings>
<servers>
<server>
<id>ossrh</id>
<username>${env.OSSRH_USER_TOKEN}</username>
<password>${env.OSSRH_PWD_TOKEN}</password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.keyname>${env.GPG_KEY}</gpg.keyname>
<gpg.passphrase>${env.GPG_PWD}</gpg.passphrase>
</properties>
</profile>
</profiles>
</settings>