Skip to content

Commit

Permalink
add signing to modules
Browse files Browse the repository at this point in the history
  • Loading branch information
sboeckelmann committed Dec 23, 2023
1 parent c26702b commit 81ce607
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions opensearch-rest-high-level-client-rxjava2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,8 @@ publications {
}

signing {
val signingKey: String? by project
val signingPassword: String? by project
useInMemoryPgpKeys(signingKey, signingPassword)
sign(publishing.publications["mavenJava"])
}
3 changes: 3 additions & 0 deletions opensearch-rest-high-level-client-rxjava3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,8 @@ publishing {
}

signing {
val signingKey: String? by project
val signingPassword: String? by project
useInMemoryPgpKeys(signingKey, signingPassword)
sign(publishing.publications["mavenJava"])
}

0 comments on commit 81ce607

Please sign in to comment.