diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3e0791a..06960d6 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -41,11 +41,6 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- - name: Configure Sonatype mirror
- uses: s4u/maven-settings-action@v2.3.0
- # Go to Sonatype directly to avoid delay syncs (could get rid of this if actions/setup-java were to support mirrors).
- with:
- mirrors: '[{"id": "oss-releases", "name": "Sonatype releases", "mirrorOf": "*", "url": "https://oss.sonatype.org/content/repositories/releases/"}]'
- name: Download Java dependencies
# We do as much as we can, but it may not be enough (https://issues.apache.org/jira/browse/MDEP-82)
run: |
@@ -67,16 +62,17 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- server-id: ossrh-releases
- server-username: OSSRH_USER
- server-password: OSSRH_PASS
+ distribution: temurin
+ server-id: central
+ server-username: MAVEN_USERNAME
+ server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.GPG_SIGNING_KEY }}
gpg-passphrase: GPG_PASSPHRASE
- name: Release artifacts
if: github.event.inputs.perform_version == ''
env:
- OSSRH_USER: ${{ secrets.OSSRH_USER }}
- OSSRH_PASS: ${{ secrets.OSSRH_PASS }}
+ MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
+ MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
# It will still check the remote but hopefully not download much (0 B at 0 B/s). -o isn't safe because of MDEP-82 (see above).
run: |
@@ -84,8 +80,8 @@ jobs:
- name: Perform release
if: github.event.inputs.perform_version != ''
env:
- OSSRH_USER: ${{ secrets.OSSRH_USER }}
- OSSRH_PASS: ${{ secrets.OSSRH_PASS }}
+ MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
+ MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
# It will still check the remote but hopefully not download much (0 B at 0 B/s). -o isn't safe because of MDEP-82 (see above).
# See https://issues.apache.org/jira/browse/SCM-729 for why the release.properties file is required.
diff --git a/pom.xml b/pom.xml
index ecc1472..61d96cc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,11 +19,11 @@
org.kill-bill.billing
killbill-oss-parent
- 0.146.6
+ 0.146.63
org.kill-bill.billing.plugin.java
payment-test-plugin
- 8.0.1-SNAPSHOT
+ 8.0.2-SNAPSHOT
bundle
Kill Bill Payment Test plugin
Kill Bill Payment Test plugin