I'm looking at the webpush-java code. I run into a problem attempting to build the project using gradle. (I'm a gradle newbie).
:signArchives FAILED
FAILURE: Build failed with an exception.
- What went wrong: Execution failed for task ':signArchives'.
Cannot perform signing task ':signArchives' because it has no configured signatory
I guess that I need to configure a signatory. How do I do that?
-x signArchives
means don't execute the signing. While this solves the error, it doesn't achieve what the OP asked (how do I configure a signatory). – Munch