forked from ebics-java/ebics-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-settings.xml
More file actions
17 lines (17 loc) · 769 Bytes
/
Copy pathrelease-settings.xml
File metadata and controls
17 lines (17 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<!--
Maven settings used only when publishing to Maven Central (see scripts/release.sh).
Contains NO secrets: the Central Portal token is injected from the environment by the
release script, which reads it from the out-of-repo credentials file. Safe to commit.
-->
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>central</id>
<username>${env.CENTRAL_USERNAME}</username>
<password>${env.CENTRAL_PASSWORD}</password>
</server>
</servers>
</settings>