Skip to content

Commit c28b5c6

Browse files
stalepclaude
andcommitted
use mvn instead of mvnw in ci workflows
The maven wrapper files are not tracked in the repo. Use mvn directly since setup-java already provides it. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 219d391 commit c28b5c6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: sudo apt-get update && sudo apt-get install -y jq
2323

2424
- name: Build and test
25-
run: ./mvnw -B clean verify
25+
run: mvn -B clean verify
2626

2727
- name: Upload test reports
2828
if: failure()

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: sudo apt-get update && sudo apt-get install -y jq
2323

2424
- name: Build and test
25-
run: ./mvnw -B clean verify
25+
run: mvn -B clean verify
2626

2727
- name: Upload test reports
2828
if: failure()

0 commit comments

Comments
 (0)