-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Signing #1
Comments
I may have found "the problem", though no idea why it is a problem. The signing happens on our CI server, so it was not immediately obvious. But digging through the Jenkins console I see this:
But these should be picked up by command line properties, right? I have the following:
where $SIGNING_PASS, $SIGNING_KEY and $SIGNING_KEYRING come from Jenkin's Credentials plugin. They get used in other (Maven) builds so I know they are correct values. |
Someone on StackOverflow[1] indicated that the property names have change from
All fail. Every combination fails. [1] https://stackoverflow.com/questions/32816003/how-to-sign-with-gradle-and-gpg2 |
You use |
Thanks for the reply @szpak ! That was a different iteration. Like I said, I was trying to just use the "new" settings someone mentioned on Stack Overflow. In that second iteration I have:
and then have the command line I mentioned:
and also tried (per SO post):
Neither command line worked. |
The best for CI would be For your first configuration, remember that Having it failing on CI, please paste the command you call (on CI) and the error you have. Btw, make sure you don't use a SNAPSHOT version as you explicitly disable signing for SNAPSHOTs. |
First, I apologize if this is not the correct place to ask usage questions - I could not find any mention in the project though of the expected place to ask them...
I've followed all of the set up for signing artifacts I could find related to this plugin, but cannot get it to work. Signing works fine - I can call the signing tasks themselves and they work. But when publishing, none are generated. I have this:
The only difference I saw from the examples was:
Which I don't think should effect whether signing happens or not.
I guess in general, could you point me to some documentation on defining signing with this plugin? Thanks!
The text was updated successfully, but these errors were encountered: