diff --git a/.circleci/config.yml b/.circleci/config.yml index 5eb37b0a0..0202f8c96 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,6 @@ version: 2.1 orbs: - ship: auth0/ship@0.6.1 codecov: codecov/codecov@3 commands: @@ -62,17 +61,6 @@ workflows: build-and-test: jobs: - build - - ship/java-publish: - prefix-tag: false - context: - - publish-gh - - publish-sonatype - filters: - branches: - only: - - master - requires: - - build api-diff: jobs: diff --git a/build.gradle b/build.gradle index f7e61fa6a..fc4ead438 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,3 @@ -buildscript { - version = "1.42.0" -} - plugins { id 'java' id 'jacoco' @@ -12,13 +8,6 @@ repositories { mavenCentral() } -def signingKey = findProperty('SIGNING_KEY') -def signingKeyPwd = findProperty('SIGNING_PASSWORD') - -signing { - useInMemoryPgpKeys(signingKey, signingKeyPwd) -} - group = 'com.auth0' logger.lifecycle("Using version ${version} for ${name} group $group")