Paul Campbell
ac18fbb2d5
* github/build: verify javadoc validity * github/build: stop testing against JDK 8 * github/build: test against JDK 16 and 17-ea Drop testing against JDK 15 * github/deploy: remove graphviz * github.deploy: nexus username is not a secret * github/settings: nexus username is not a secret * github/deploy: publish javadoc To: https://kemitix.github.io/wiser-assertions/ * github/build: upgrade setup-java action to 2.1.0 * github/deploy: upgrade setup-java action to 2.1.0
28 lines
933 B
XML
28 lines
933 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0">
|
|
<servers>
|
|
<server>
|
|
<id>sonatype-nexus-snapshots</id>
|
|
<username>kemitix</username>
|
|
<password>${env.NEXUS_PASSWORD}</password>
|
|
</server>
|
|
<server>
|
|
<id>sonatype-nexus-staging</id>
|
|
<username>kemitix</username>
|
|
<password>${env.NEXUS_PASSWORD}</password>
|
|
</server>
|
|
</servers>
|
|
<profiles>
|
|
<profile>
|
|
<id>gpg-sign</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<properties>
|
|
<gpg.executable>gpg</gpg.executable>
|
|
<gpg.keyname>${env.GPG_KEYNAME}</gpg.keyname>
|
|
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
</settings>
|