You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2022/01/15 12:23:02 UTC

[maven-dist-tool] branch master updated: Exclude the repos also for Branches Report.

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

khmarbaise pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dist-tool.git


The following commit(s) were added to refs/heads/master by this push:
     new b43ce3d  Exclude the repos also for Branches Report.
b43ce3d is described below

commit b43ce3daa97eddd5bd96743490de6bccef8a5556
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Jan 15 13:22:56 2022 +0100

    Exclude the repos also for Branches Report.
---
 .../maven/dist/tools/branches/ListBranchesReport.java       | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/maven/dist/tools/branches/ListBranchesReport.java b/src/main/java/org/apache/maven/dist/tools/branches/ListBranchesReport.java
index fece0e8..999dc61 100644
--- a/src/main/java/org/apache/maven/dist/tools/branches/ListBranchesReport.java
+++ b/src/main/java/org/apache/maven/dist/tools/branches/ListBranchesReport.java
@@ -64,9 +64,16 @@ public class ListBranchesReport extends AbstractMavenReport
     
     private static final String DEPENDABOT_CONFIG = ".github/dependabot.yml";
 
-    private static final Collection<String> EXCLUDED = Arrays.asList( "maven-jenkins-env", "maven-jenkins-lib",
-                                                                      "maven-sources", "maven-studies" );
-    
+    private Collection<String> EXCLUDED = Arrays.asList( "maven-integration-testing", // runs with Maven core job
+            "maven-jenkins-env",
+            "maven-jenkins-lib",
+            "maven-sources",
+            "maven-studies",
+            "maven-build-cache-extension",
+            "maven-mvnd",
+            "maven-metric-extension",
+            "maven-gh-actions-shared" );
+
     private static final Map<String, String> JIRAPROJECTS = new HashMap<>();
     
     static