From 77782ccad39409698037d9188ebac9ab5ebfb133 Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Tue, 17 Dec 2024 09:19:13 +0100 Subject: [PATCH] Enable Maven profile "full" when building This also enables the "full" profiles on PRs. --- .github/workflows/build-pull-request.yml | 2 +- .github/workflows/build.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-pull-request.yml b/.github/workflows/build-pull-request.yml index a34474dfb7..e77f1d841d 100644 --- a/.github/workflows/build-pull-request.yml +++ b/.github/workflows/build-pull-request.yml @@ -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 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bbc5c9b777..b417765cdb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }}