Skip to content

Commit 126bdef

Browse files
committed
remove refs to settings.xml
1 parent f084200 commit 126bdef

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/mvn-test-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
id: get_version
3131
- name: Build and Test
3232
id: build-and-test
33-
run: mvn -s .github/maven/settings.xml --batch-mode --update-snapshots test
33+
run: mvn --batch-mode --update-snapshots test
3434
continue-on-error: true
3535
- name: Upload test logs if tests failed
3636
if: steps.build-and-test.outcome != 'success'
@@ -43,7 +43,7 @@ jobs:
4343
run: exit 1
4444
- name: Integration Tests
4545
id: integration-tests
46-
run: mvn -s .github/maven/settings.xml --batch-mode --update-snapshots verify -DskipTests=true
46+
run: mvn --batch-mode --update-snapshots verify -DskipTests=true
4747
continue-on-error: true
4848
- name: Upload test logs if tests failed
4949
if: steps.integration-tests.outcome != 'success'
@@ -56,7 +56,7 @@ jobs:
5656
run: exit 1
5757
- name: Package
5858
run: |
59-
mvn -s .github/maven/settings.xml --batch-mode --update-snapshots -DskipTests=true package
59+
mvn --batch-mode --update-snapshots -DskipTests=true package
6060
- uses: actions/cache@v4
6161
with:
6262
path: .

0 commit comments

Comments
 (0)