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 2021/10/25 17:23:15 UTC

[maven-wrapper-plugin] branch master updated: fix typo

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


The following commit(s) were added to refs/heads/master by this push:
     new fceb4f7  fix typo
fceb4f7 is described below

commit fceb4f70fae7e63f8f4ec7309270e184b79e060b
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Mon Oct 25 19:22:27 2021 +0200

    fix typo
---
 src/main/java/org/apache/maven/plugins/wrapper/WrapperMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/wrapper/WrapperMojo.java b/src/main/java/org/apache/maven/plugins/wrapper/WrapperMojo.java
index 755b81d..224a284 100644
--- a/src/main/java/org/apache/maven/plugins/wrapper/WrapperMojo.java
+++ b/src/main/java/org/apache/maven/plugins/wrapper/WrapperMojo.java
@@ -153,7 +153,7 @@ public class WrapperMojo extends AbstractMojo
             }
             catch ( IOException e )
             {
-                throw new MojoExecutionException( "can't create wrapper.properties", e );
+                throw new MojoExecutionException( "can't create maven-wrapper.properties", e );
             }
         }
     }