From c973d5847ec644a252061137617f533939593f22 Mon Sep 17 00:00:00 2001 From: Kai Reinhard Date: Sun, 13 Oct 2024 11:14:38 +0200 Subject: [PATCH] Update maven.yml (exclude projectforge-webapp) projectforge-webapp (build of react webapp) fails time to time. So skip it here. --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 3eac30a41e..aa05a792de 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -25,5 +25,5 @@ jobs: with: java-version: '11' distribution: 'adopt' - - name: Build with Maven - run: mvn -B package --file pom.xml + - name: Build with Maven (excluding projectforge-webapp) + run: mvn -B package --file pom.xml -pl '!projectforge-webapp'