Skip to content

Commit

Permalink
update deployment properties
Browse files Browse the repository at this point in the history
  • Loading branch information
v1r3n committed Jan 6, 2024
1 parent 64073f0 commit f42a279
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions deploy.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ subprojects {

group = 'org.conductoross'

java {
withSourcesJar()
withJavadocJar()
}

publishing {
publications {
mavenJava(MavenPublication) {
Expand Down Expand Up @@ -59,13 +64,11 @@ subprojects {
signing {
def signingKeyId = findProperty('signingKeyId')
if (signingKeyId) {
println 'Signing artifacts with keys'
def signingKey = findProperty('signingKey')
def signingPassword = findProperty('signingPassword')
if (signingKeyId && signingKey && signingPassword) {
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
}

sign publishing.publications
}

Expand Down

0 comments on commit f42a279

Please sign in to comment.