We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b684139 commit d8ddcbfCopy full SHA for d8ddcbf
1 file changed
build.gradle
@@ -11,13 +11,17 @@ repositories {
11
group = 'com.auth0'
12
logger.lifecycle("Using version ${version} for ${name} group $group")
13
14
+def signingKey = findProperty('signingKey')
15
+def signingKeyPwd = findProperty('signingPassword')
16
+
17
oss {
18
name 'auth0'
19
repository 'auth0-java'
20
organization 'auth0'
21
description 'Java client library for the Auth0 platform.'
22
baselineCompareVersion '2.0.0'
23
testInJavaVersions = [8, 11, 17]
24
+ skipAssertSigningConfiguration true
25
26
developers {
27
auth0 {
@@ -31,6 +35,10 @@ oss {
31
35
}
32
36
33
37
38
+signing {
39
+ useInMemoryPgpKeys(signingKey, signingKeyPwd)
40
+}
41
34
42
jacocoTestReport {
43
reports {
44
xml.enabled = true
0 commit comments