Deploy releases directly to maven central on the new Sonatype infrastructure..

To reduce risk of a release getting stuck in an intermediate state on bintray, make all official releases to maven central.

Resolves #1180.
This commit is contained in:
Greg L. Turnquist
2021-01-08 12:04:09 -06:00
parent 1c25bde277
commit 8ee2ada5ac
16 changed files with 375 additions and 241 deletions

14
settings.xml Normal file
View File

@@ -0,0 +1,14 @@
<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>sonatype</id>
<username>${env.USERNAME}</username>
<password>${env.PASSWORD}</password>
</server>
</servers>
</settings>