Skip to content

Domain event subscriptions now accepts metadata as the first paramete… #470

Domain event subscriptions now accepts metadata as the first paramete…

Domain event subscriptions now accepts metadata as the first paramete… #470

Workflow file for this run

name: Java CI with Maven
on:
push:
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17, 21 ]
steps:
- uses: actions/checkout@main
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@main
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B package --file pom.xml