From ffb1b7ed1f5de7d5f46ddc1e0fef6ee0e597c8d5 Mon Sep 17 00:00:00 2001 From: Christoph John Date: Fri, 21 Jun 2024 16:14:40 +0200 Subject: [PATCH] skip javadoc and bundle plugin also for non-windows build --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index efd80c14dd..4c4665e0a7 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -28,7 +28,7 @@ jobs: java-version: ${{ matrix.java }} cache: 'maven' - name: Test with Maven - run: ./mvnw install -B -V -Pminimal-fix-latest -D"java.util.logging.config.file"="./quickfixj-core/src/test/resources/logging.properties" -D"http.keepAlive"="false" -D"maven.wagon.http.pool"="false" -D"maven.wagon.httpconnectionManager.ttlSeconds"="120" + run: ./mvnw install -B -V -D"maven.javadoc.skip"="true" -P"skipBundlePlugin,minimal-fix-latest" -D"java.util.logging.config.file"="./quickfixj-core/src/test/resources/logging.properties" -D"http.keepAlive"="false" -D"maven.wagon.http.pool"="false" -D"maven.wagon.httpconnectionManager.ttlSeconds"="120" test-windows: runs-on: ${{ matrix.os }}