I'm trying to use maven-gpg-plugin:sign in order to sign project artifacts before deployment to Sonatype OSS repository. The question is where shall I keep my secret key secring.gpg:

  1. In continuous integration ~/.gnupg directory
  2. In project source code, e.g. src/test/resources/gpg/secring.gpg

And why?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If key is sensitive put it in ~/.gnupg directory on CI server and protect that directory with proper access modifiers. 2nd approach will allow every developer with access to project to see key.

link|improve this answer
Anyone with access to the CI server will be able to read the key through it. – Christoffer Hammarström Dec 22 '10 at 19:37
With access to server and with access to ~/.gnupg, that is. But my answer was based on assumption that not every developer will have access to server and/or server's user under which CI is running. – Victor Sorokin Dec 22 '10 at 19:45
1  
anyone who can commit a unit test can get access to it (though in that case it might be obvious they did) – Brett Porter Dec 22 '10 at 22:07
1  
Not at all. Permission for a commit is not connected in any reasonable way to permission to have access to directory of user who runs CI server. – Victor Sorokin Dec 22 '10 at 22:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.