Skip to content

Commit

Permalink
update publish-maven-central-plugin plugin version (#286)
Browse files Browse the repository at this point in the history
* update publish-maven-central-plugin plugin version

* add ORG_GRADLE_PROJECT_signingKey environment variable
  • Loading branch information
ravisingal authored Mar 12, 2021
1 parent 13f384e commit 58d67d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ jobs:
version: 19.03.13
- docker_login
- run: echo "Releasing version" && ./gradlew printVersion
- run: ./gradlew publish
- run:
name: Publish to Maven Central
command: |
export ORG_GRADLE_PROJECT_signingKey=$(echo $SIGNING_KEY | base64 -d)
./gradlew publish
- run: DOCKER_TAG=${CIRCLE_TAG} make docker docker-push
- run:
name: "Copy artifacts to workspace"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.hypertrace.gradle.publishing.License.APACHE_2_0;
plugins {
`java-library`
id("com.diffplug.spotless") version "5.2.0" apply false
id("org.hypertrace.publish-maven-central-plugin") version "0.4.1" apply false
id("org.hypertrace.publish-maven-central-plugin") version "0.4.2" apply false
id("org.hypertrace.ci-utils-plugin") version "0.1.4"
id("org.gradle.test-retry") version "1.2.0" apply false
}
Expand Down

0 comments on commit 58d67d7

Please sign in to comment.