Skip to content

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.5 to 3.3.0 #746

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.5 to 3.3.0

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.5 to 3.3.0 #746

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Maven Test Build
on:
push:
workflow_dispatch:
jobs:
linux_build:
name: Linux-Test
runs-on: ubuntu-latest
# Service containers to run with `runner-job`
services:
activemq:
image: quay.io/artemiscloud/activemq-artemis-broker:latest
ports:
- 61616:61616
env:
AMQ_USER: admin
AMQ_PASSWORD: admin
postgres:
image: postgres
ports:
- 5432:5432
env:
POSTGRES_PASSWORD: admin
POSTGRES_USER: postgres
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- name: Build with Maven
run: mvn -B install --file pom.xml