You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2019/06/16 10:30:22 UTC

[maven-dist-tool] branch master updated: exclude retired components

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

hboutemy 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 4f54114  exclude retired components
4f54114 is described below

commit 4f54114affdaf06c0bccb658935422307953650d
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sun Jun 16 12:30:18 2019 +0200

    exclude retired components
---
 .../apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java   | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java b/src/main/java/org/apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java
index 2cc8dee..1c7f9a7 100644
--- a/src/main/java/org/apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java
+++ b/src/main/java/org/apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java
@@ -50,11 +50,16 @@ public class ListMasterJobsMojo extends AbstractMavenReport
     private String gitboxUrl = "https://gitbox.apache.org/repos/asf";
     private String mavenboxJobsBaseUrl = "https://builds.apache.org/job/maven-box/job/";
     
-    private Collection<String> excluded = Arrays.asList( "maven-integration-testing", // runs with maven
+    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-studies",
+                                                         // retired
+                                                         "maven-ant-plugin",
+                                                         "maven-artifact-resolver",
+                                                         "maven-repository-plugin",
+                                                         "maven-runtime" );
 
     @Override
     public String getOutputName()