File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed
Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -18,3 +18,4 @@ hs_err_pid*
1818intercom-java /.project
1919
2020.project
21+ securing.gpg
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ buildscript {
1010 }
1111}
1212
13+ plugins {
14+ id ' signing'
15+ }
16+
1317allprojects {
1418 apply plugin : ' idea'
1519}
Original file line number Diff line number Diff line change @@ -69,6 +69,14 @@ bintray {
6969 }
7070}
7171
72+ signing {
73+ String keyId = System . getenv(' keyId' );
74+ String gpgPassword = System . getenv(' gpgPassword' );
75+ if (project. hasProperty(' signing.keyId' ) != null && gpgPassword != null && project. hasProperty(' signing.secretKeyRingFile' )) {
76+ sign configurations. archives
77+ }
78+ }
79+
7280ext. repo = Grgit . open(project. file(' ..' ))
7381
7482task printVersion << {
You can’t perform that action at this time.
0 commit comments