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 2020/06/23 23:29:21 UTC

[maven-artifact-plugin] branch master updated: maven-plugin is another type that is represented as a jar file

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-artifact-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 1055dec  maven-plugin is another type that is represented as a jar file
1055dec is described below

commit 1055dec38dba695823d746fbe1e79c2671a12c26
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Wed Jun 24 01:29:12 2020 +0200

    maven-plugin is another type that is represented as a jar file
---
 .../apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java b/src/main/java/org/apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java
index 27c97b9..926bd38 100644
--- a/src/main/java/org/apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java
+++ b/src/main/java/org/apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java
@@ -69,6 +69,7 @@ public class ReferenceBuildinfoUtil
         types.add( "war" );
         types.add( "ear" );
         types.add( "rar" );
+        types.add( "maven-plugin" );
         JAR_TYPES = Collections.unmodifiableSet( types );
     }