Skip to content

Merge pull request #590 from jakartaee/dependabot/maven/tck-dist/src/… #580

Merge pull request #590 from jakartaee/dependabot/maven/tck-dist/src/…

Merge pull request #590 from jakartaee/dependabot/maven/tck-dist/src/… #580

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches:
- 'main'
- 'RELEASE-*'
pull_request:
branches:
- 'main'
- 'RELEASE-*'
permissions:
contents: read
jobs:
build:
# TODO update once 25-ea is available
strategy:
matrix:
java-version: [ '21' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
cache: maven
- name: Build project
run: mvn -B package --file pom.xml
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up JDK 21
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
with:
java-version: 21
distribution: 'temurin'
cache: maven
- name: Analyze starters
# Note: the starter is always 1 version ahead of what is in maven central
# therefore, when we analyze the starters we need to force a prior version
run: mvn dependency:analyze -Djakarta.concurrent.version=3.1.1 --file tck-dist/src/main/starter/pom.xml