From e92e1fcce6f5d6015e6e9c61dd4c4c80b93227a0 Mon Sep 17 00:00:00 2001 From: Ben Asmussen Date: Mon, 9 Jun 2025 15:42:57 +0000 Subject: [PATCH] Configure Maven batch mode and no-transfer-progress in CI - Add --batch-mode flag for non-interactive builds - Add --no-transfer-progress to reduce log verbosity - Applied to all Maven commands in CI workflow --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e2423e..625b746 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,10 +27,10 @@ jobs: cache: maven - name: Build with Maven - run: mvn clean compile -Dgpg.skip=true + run: mvn --batch-mode --no-transfer-progress clean compile -Dgpg.skip=true - name: Run tests - run: mvn test -Dgpg.skip=true + run: mvn --batch-mode --no-transfer-progress test -Dgpg.skip=true - name: Verify - run: mvn verify -Dgpg.skip=true \ No newline at end of file + run: mvn --batch-mode --no-transfer-progress verify -Dgpg.skip=true \ No newline at end of file