Introduce verify-local command to verify the local build setup required to release Spring Data.

Closes #50
This commit is contained in:
Mark Paluch
2023-06-15 16:36:29 +02:00
parent f18b09c238
commit 1cd87fb062
5 changed files with 45 additions and 5 deletions

View File

@@ -114,12 +114,11 @@ Add an `application-local.properties` to the project root and add the following
* `gpg.keyname` - The GPG key name.
* `gpg.passphrase` - The password of your GPG key.
* `gpg.executable` - Path to your GPG executable, typically `/usr/local/MacGPG2/bin/gpg2`
or `/usr/local/bin/gpg`.
* `project-service.key` - Project Service authentication token. Must be a valid GitHub token. Can be the same
as `git.password` when using a GitHub token as password.
or `/usr/local/bin/gpg`.
* `project-service.key` - Project Service 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).
After that, run the `verify-local` command (`$ verify-local`) to verify your local settings (authentication, correct Maven, Java, and GPG setup).
See `application-local.template` for details.