You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2022/08/31 09:49:40 UTC

[myfaces-tobago] branch tobago-5.x updated: build: re-enable Sonatype OSS (#3060)

This is an automated email from the ASF dual-hosted git repository.

lofwyr pushed a commit to branch tobago-5.x
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/tobago-5.x by this push:
     new bc53dc43dc build: re-enable Sonatype OSS (#3060)
bc53dc43dc is described below

commit bc53dc43dc989a2341042e2c4b2c42b801e7b2d1
Author: Udo Schnurpfeil <gi...@schnurpfeil.de>
AuthorDate: Wed Aug 31 11:49:36 2022 +0200

    build: re-enable Sonatype OSS (#3060)
    
    Co-authored-by: Udo Schnurpfeil <ud...@irian.eu>
---
 .github/workflows/tobago-ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/tobago-ci.yml b/.github/workflows/tobago-ci.yml
index d97f4c514b..36be7ae215 100644
--- a/.github/workflows/tobago-ci.yml
+++ b/.github/workflows/tobago-ci.yml
@@ -44,8 +44,9 @@ jobs:
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
           restore-keys: ${{ runner.os }}-m2
       - name: Build with Maven
+#         -DossindexAnalyzerEnabled=false to ignore Sonatype OSS (when it is out of order)
         run: |
-          if ! mvn -B -DossindexAnalyzerEnabled=false checkstyle:check apache-rat:check animal-sniffer:check dependency-check:check -Pgenerate-assembly -Pfrontend package -Dformats=XML -f pom.xml; then
+          if ! mvn -B checkstyle:check apache-rat:check animal-sniffer:check dependency-check:check -Pgenerate-assembly -Pfrontend package -Dformats=XML -f pom.xml; then
             find . \( -path '*/target/surefire-reports/*.xml' -o -path '*/target/failsafe-reports/*.xml' -o -path '*/target/rat.txt' -o -path '*/target/checkstyle-result.xml' -o -path '*/target/dependency-check-report.xml' \) | zip -q reports.zip -@
             exit 1
           fi