Skip to content

Bump maven.version from 3.9.12 to 3.9.14 (#80) #157

Bump maven.version from 3.9.12 to 3.9.14 (#80)

Bump maven.version from 3.9.12 to 3.9.14 (#80) #157

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
java-version: 25
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -ntp -Dgpg.skip=true clean compile
- name: Run tests
run: mvn -ntp -Dgpg.skip=true test
- name: Package
run: mvn -ntp -Dgpg.skip=true package
- name: Install plugin locally
run: mvn -ntp -Dgpg.skip=true install