Skip to content

Commit d30dde8

Browse files
committed
Fix CI: Add -Drevision property to all Maven commands in workflows
1 parent de5af4a commit d30dde8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build-test-codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
cache: maven
2424

2525
- name: Build with Maven and run tests
26-
run: mvn -B clean verify
26+
run: mvn -B clean verify -Drevision=0.2.3-SNAPSHOT
2727

2828
- name: Debug - Check JaCoCo Report Location
2929
run: |

.github/workflows/java11-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache: maven
2323

2424
- name: Build with Maven
25-
run: mvn -B clean test
25+
run: mvn -B clean test -Drevision=0.2.3-SNAPSHOT
2626

2727
- name: Upload Test Results
2828
if: always()

.github/workflows/java17-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache: maven
2323

2424
- name: Build with Maven
25-
run: mvn -B clean test
25+
run: mvn -B clean test -Drevision=0.2.3-SNAPSHOT
2626

2727
- name: Upload Test Results
2828
if: always()

.github/workflows/java21-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache: maven
2323

2424
- name: Build with Maven
25-
run: mvn -B clean test
25+
run: mvn -B clean test -Drevision=0.2.3-SNAPSHOT
2626

2727
- name: Upload Test Results
2828
if: always()

0 commit comments

Comments
 (0)