Skip to content

Commit

Permalink
Uses the Maven wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
vogella committed Oct 4, 2023
1 parent dada4ce commit 8656d3e
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflow/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,22 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: 'Check out repository'
uses: actions/checkout@v3

- name: 'Set up Java'
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'

- name: Build Maven artifacts
run: ./mvnw clean verify -PuseJenkinsSnapshots -f org.eclipse.xtext.maven.releng


- uses: actions/checkout@v3
- name: Setup Maven Action
uses: s4u/setup-maven-action
- name: Build with Maven
Expand Down

0 comments on commit 8656d3e

Please sign in to comment.