File tree Expand file tree Collapse file tree 6 files changed +11
-12
lines changed
expediagroup-sdk-transport-okhttp Expand file tree Collapse file tree 6 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ plugins {
99version = project. property(" VERSION" )
1010
1111apply from : " $rootDir /gradle-tasks/publish.gradle"
12+ apply from : " $rootDir /gradle-tasks/signing.gradle"
1213
1314dependencies {
1415 /* Kotlin */
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ plugins {
1010version = project. property(" VERSION" )
1111
1212apply from : " $rootDir /gradle-tasks/publish.gradle"
13+ apply from : " $rootDir /gradle-tasks/signing.gradle"
1314
1415dependencies {
1516 /* Kotlin */
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ plugins {
99version = project. property(" VERSION" )
1010
1111apply from : " $rootDir /gradle-tasks/publish.gradle"
12+ apply from : " $rootDir /gradle-tasks/signing.gradle"
1213
1314dependencies {
1415 /* Kotlin */
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ plugins {
99version = project. property(" VERSION" )
1010
1111apply from : " $rootDir /gradle-tasks/publish.gradle"
12+ apply from : " $rootDir /gradle-tasks/signing.gradle"
1213
1314dependencies {
1415 /* Kotlin */
Original file line number Diff line number Diff line change 1- tasks. named(" publish" ) {
2- dependsOn tasks. named(" signPluginMavenPublication" )
3- }
4-
51publishing {
62 publications {
73 mavenJava(MavenPublication ) {
@@ -58,11 +54,3 @@ publishing {
5854 }
5955 }
6056}
61-
62- signing {
63- def signingKey = System . getenv(" GPG_SECRET" )
64- def signingPassword = System . getenv(" GPG_PASSPHRASE" )
65-
66- useInMemoryPgpKeys(signingKey, signingPassword)
67- sign publishing. publications
68- }
Original file line number Diff line number Diff line change 1+ signing {
2+ def signingKey = System . getenv(" GPG_SECRET" )
3+ def signingPassword = System . getenv(" GPG_PASSPHRASE" )
4+
5+ useInMemoryPgpKeys(signingKey, signingPassword)
6+ sign publishing. publications
7+ }
You can’t perform that action at this time.
0 commit comments