Skip to content

Commit

Permalink
Enable Maven profile "full" when building
Browse files Browse the repository at this point in the history
This also enables the "full" profiles on PRs.
  • Loading branch information
mhalbritter committed Dec 17, 2024
1 parent e62633a commit 77782cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
cache: 'maven'

- name: Build with Maven
run: ./mvnw --batch-mode --update-snapshots verify
run: ./mvnw --batch-mode --update-snapshots -Pfull verify
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Maven verify
if: ${{ !matrix.runner.deploy-snapshots }}
run: ./mvnw --no-transfer-progress --batch-mode --update-snapshots verify
run: ./mvnw --no-transfer-progress --batch-mode --update-snapshots -Pfull verify

- name: Maven deploy
if: ${{ matrix.runner.deploy-snapshots }}
Expand Down

0 comments on commit 77782cc

Please sign in to comment.