Browse Source
Fixes #697 This change replaces JCenter with Sonatype OSSRH for snapshot and release management. To complete this change, we will need to add additional information to Travis, specifically the GPG information to sign the artifacts during a release. It's my opinion that those values should be in Travis directly and not here in this repository. I'm open to other suggestions and feedback on this approach. Additional changes include: * Updating BOM template to include SCM per OSSRH rules. * Removed Bintray and GitHub credentials, they are no longer needed. * Adding GPG Signing Values * Code Signing Pathspull/986/head
7 changed files with 77 additions and 63 deletions
Binary file not shown.
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env bash |
||||
# |
||||
# Copyright 2012-2019 The Feign Authors |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
||||
# in compliance with the License. You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software distributed under the License |
||||
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
||||
# or implied. See the License for the specific language governing permissions and limitations under |
||||
# the License. |
||||
# |
||||
|
||||
openssl aes-256-cbc -K $encrypted_8beb152aadd6_key -iv $encrypted_8beb152aadd6_iv -in travis/codesigning.asc.enc -out travis/codesigning.asc -d |
||||
gpg --fast-import travis/codesigning.asc |
Loading…
Reference in new issue