You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2021/04/20 18:16:26 UTC

[maven-plugin-tools] branch master updated: [MPLUGIN-365] Don't log a warning when packaging type unsupported -> info is enough

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

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git


The following commit(s) were added to refs/heads/master by this push:
     new 5417a1c  [MPLUGIN-365] Don't log a warning when packaging type unsupported -> info is enough
5417a1c is described below

commit 5417a1caa74ba1d83b613735d2f9a85d20c88f88
Author: rfscholte <rf...@apache.org>
AuthorDate: Tue Apr 20 20:16:08 2021 +0200

    [MPLUGIN-365] Don't log a warning when packaging type unsupported -> info is enough
---
 .../main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java
index 849ea2e..57ae51b 100644
--- a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java
+++ b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java
@@ -187,7 +187,7 @@ public abstract class AbstractGeneratorMojo
     {
         if ( !packagingTypes.contains( project.getPackaging() ) )
         {
-            getLog().warn( "Unsupported packaging type " + project.getPackaging() + ", execution skipped" );
+            getLog().info( "Unsupported packaging type " + project.getPackaging() + ", execution skipped" );
             return;
         }
         if ( skip )