Skip to content

feat: reorganize pom.xml by removing developer section and consolidat… #5

feat: reorganize pom.xml by removing developer section and consolidat…

feat: reorganize pom.xml by removing developer section and consolidat… #5

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ "master" ]
paths:
- '**.java'
- '**/pom.xml'
pull_request:
branches: [ "master" ]
paths:
- '**.java'
- '**/pom.xml'
jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml