Skip to content

Bump org.apache.maven.plugins:maven-compiler-plugin from 3.14.1 to 3.15.0 #71

Bump org.apache.maven.plugins:maven-compiler-plugin from 3.14.1 to 3.15.0

Bump org.apache.maven.plugins:maven-compiler-plugin from 3.14.1 to 3.15.0 #71

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: Java CI
on:
push:
branches: [ main ]
paths:
- src/
- "pom.xml"
- ".github/workflows/build.yml"
pull_request:
branches: [ main ]
paths:
- src/
- "pom.xml"
- ".github/workflows/build.yml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 25
uses: actions/setup-java@v1
with:
java-version: 25
- name: Build with Maven
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn -B package --file pom.xml