Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
poovamraj committed Dec 18, 2023
1 parent b684139 commit f1fcaf2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,17 @@ repositories {
group = 'com.auth0'
logger.lifecycle("Using version ${version} for ${name} group $group")

def signingKey = project.hasProperty('signingKey')
def signingKeyPwd = project.hasProperty('signingPassword')

oss {
name 'auth0'
repository 'auth0-java'
organization 'auth0'
description 'Java client library for the Auth0 platform.'
baselineCompareVersion '2.0.0'
testInJavaVersions = [8, 11, 17]
skipAssertSigningConfiguration true

developers {
auth0 {
Expand All @@ -31,6 +35,10 @@ oss {
}
}

signing {
useInMemoryPgpKeys(signingKey, signingKeyPwd)
}

jacocoTestReport {
reports {
xml.enabled = true
Expand Down

0 comments on commit f1fcaf2

Please sign in to comment.