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 <[email protected]>
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 )