Skip to content

Commit d8ddcbf

Browse files
authored
Update build.gradle (#600)
1 parent b684139 commit d8ddcbf

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ repositories {
1111
group = 'com.auth0'
1212
logger.lifecycle("Using version ${version} for ${name} group $group")
1313

14+
def signingKey = findProperty('signingKey')
15+
def signingKeyPwd = findProperty('signingPassword')
16+
1417
oss {
1518
name 'auth0'
1619
repository 'auth0-java'
1720
organization 'auth0'
1821
description 'Java client library for the Auth0 platform.'
1922
baselineCompareVersion '2.0.0'
2023
testInJavaVersions = [8, 11, 17]
24+
skipAssertSigningConfiguration true
2125

2226
developers {
2327
auth0 {
@@ -31,6 +35,10 @@ oss {
3135
}
3236
}
3337

38+
signing {
39+
useInMemoryPgpKeys(signingKey, signingKeyPwd)
40+
}
41+
3442
jacocoTestReport {
3543
reports {
3644
xml.enabled = true

0 commit comments

Comments
 (0)