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 2020/12/31 08:59:58 UTC

[maven] branch MNG-7060 updated: Adjust message of exception

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

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


The following commit(s) were added to refs/heads/MNG-7060 by this push:
     new 13c8990  Adjust message of exception
13c8990 is described below

commit 13c89903d2756be0a0de8f11d267dba93c7e5b6b
Author: rfscholte <rf...@apache.org>
AuthorDate: Thu Dec 31 09:59:48 2020 +0100

    Adjust message of exception
---
 .../org/apache/maven/lifecycle/internal/builder/BuilderCommon.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java b/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
index f363be9..2b5d6ec 100644
--- a/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
+++ b/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
@@ -119,9 +119,9 @@ public class BuilderCommon
             if ( gpgMojo.isPresent() )
             {
                 throw new LifecycleExecutionException( "The maven-gpg-plugin is not supported by Maven 4."
-                    + " Verify if there is a compatible signing solution"
-                    + " or add -D" + Features.buildConsumer().propertyName() + "=false"
-                    + " or use Maven 3" );
+                    + " Verify if there is a compatible signing solution,"
+                    + " add -D" + Features.buildConsumer().propertyName() + "=false"
+                    + " or use Maven 3." );
             }
         }