Introduce verify command to verify configuration settings.

Closes #182.
This commit is contained in:
Mark Paluch
2021-03-31 10:47:18 +02:00
parent a214956e68
commit 9bc7f70b5a
12 changed files with 220 additions and 20 deletions

View File

@@ -19,8 +19,13 @@ Add an `application-local.properties` to the project root and add the following
- `deployment.password` - The encrypted Artifactory password..
- `gpg.keyname` - The GPG key name.
- `gpg.password` - The password of your GPG key.
- `gpg.executable` - Path to your GPG executable, typically `/usr/local/MacGPG2/bin/gpg2` or `/usr/local/bin/gpg`.
- `sagan.key` - Sagan authentication token. Must be a valid GitHub token. Can be the same as `git.password` when using a GitHub token as password.
- `gpg.executable` - Path to your GPG executable, typically `/usr/local/MacGPG2/bin/gpg2`
or `/usr/local/bin/gpg`.
- `sagan.key` - Sagan authentication token. Must be a valid GitHub token. Can be the same
as `git.password` when using a GitHub token as password.
After that, run the `verify` command (`$ verify`) to verify your settings (authentication,
correct Maven, Java, and GPG setup).
See `application-local.template` for details.