Skip to content

Commit 569448d

Browse files
Another test...
Signed-off-by: Johannes Tegnér <[email protected]>
1 parent ec51014 commit 569448d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,10 @@ publishing {
9393
}
9494

9595
signing {
96-
required { version != "NONE" }
96+
def signingKeyId = "4ED1648B5E695E6A"
97+
def signingKey = findProperty("signingKey") ?: "key"
98+
def signingPassword = findProperty("signingPassword") ?: "pass"
99+
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
97100
sign publishing.publications.mavenJava
98101
}
99102

0 commit comments

Comments
 (0)