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/23 09:04:36 UTC

[maven-plugin-tools] 02/05: [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 dependencies
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git

commit d931972a6d8d2a89a176aa8d6610d294887956c6
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 )