Skip to content
This repository has been archived by the owner on Jul 21, 2024. It is now read-only.

Commit

Permalink
Bump ActiveMQ version
Browse files Browse the repository at this point in the history
  • Loading branch information
atooni committed Nov 15, 2023
1 parent b3be8c9 commit 53800fb
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 39 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
pull_request:
branches: [ main ]
branches: [main]

env:
# This is the java version that will trigger an upload to the SNAPSHOT maven store
Expand All @@ -15,30 +15,30 @@ jobs:
build:
strategy:
matrix:
java-version: [1.8]
java-version: [11]

runs-on: ubuntu-latest
continue-on-error: true

steps:
- uses: actions/checkout@v2
- run: git fetch --prune --tags --unshallow

- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}

- name: Setup GPG secrets
run: |
gpg --version
cat <(echo "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | base64 -d | gpg --batch --import
gpg --list-secret-keys --keyid-format LONG
- run: ./millw -i show pluginVersion
- run: ./millw -i __.testCached

- name: Publish to Maven Central
if: ${{ matrix.java-version == env.MAIN_JAVA_VERSION && github.ref == env.PUBLISH_BRANCH && github.event_name == 'push' }}
run: ./millw mill.scalalib.PublishModule/publishAll --sonatypeCreds "${{ secrets.OSSRH_USER}}:${{ secrets.OSSRH_PASSWORD }}" --gpgArgs "--passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD}},--batch,--yes,-a,-b,--pinentry-mode,loopback" --publishArtifacts __.publishArtifacts --readTimeout 600000 --release true --signed true
- uses: actions/checkout@v2
- run: git fetch --prune --tags --unshallow

- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}

- name: Setup GPG secrets
run: |
gpg --version
cat <(echo "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | base64 -d | gpg --batch --import
gpg --list-secret-keys --keyid-format LONG
- run: ./millw -i show pluginVersion

- run: ./millw -i __.testCached

- name: Publish to Maven Central
if: ${{ matrix.java-version == env.MAIN_JAVA_VERSION && github.ref == env.PUBLISH_BRANCH && github.event_name == 'push' }}
run: ./millw mill.scalalib.PublishModule/publishAll --sonatypeCreds "${{ secrets.OSSRH_USER}}:${{ secrets.OSSRH_PASSWORD }}" --gpgArgs "--passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD}},--batch,--yes,-a,-b,--pinentry-mode,loopback" --publishArtifacts __.publishArtifacts --readTimeout 600000 --release true --signed true
14 changes: 0 additions & 14 deletions azure-pipelines.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ trait BlendedDependencies { deps =>
def blendedOrg : String = "de.wayofquality.blended"

// Versions
def activeMqVersion = "5.17.1"
def activeMqVersion = "5.17.6"

def akkaVersion = "2.6.6"
def akkaHttpVersion = "10.1.12"


def dominoVersion = "1.1.5"
def jettyVersion = "9.4.36.v20210114"
def jolokiaVersion = "1.6.2"
Expand Down

0 comments on commit 53800fb

Please sign in to comment.