Skip to content

Commit

Permalink
Trying to fix deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
asm0dey committed Jul 11, 2023
1 parent bd616a5 commit 14a65c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ plugins {
signing
}

group = "com.github.asm0dey.dummylib"
version = "0.0.1"

val javadocJar by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
}
Expand Down Expand Up @@ -47,7 +44,7 @@ publishing {
}

signing {
if (System.clearProperty("signing.gnupg.keyName")!=null) {
if (System.getProperty("signing.gnupg.keyName")!=null) {
useGpgCmd()
sign(publishing.publications)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ plugins {
id("io.github.gradle-nexus.publish-plugin")
}

group = "com.github.asm0dey.dummylib"
version = "0.0.1"

nexusPublishing {
// Configure maven central repository
// https://github.com/gradle-nexus/publish-plugin#publishing-to-maven-central-via-sonatype-ossrh
Expand Down

0 comments on commit 14a65c6

Please sign in to comment.