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
commit f1564c47787c5a7e6bb116094abc5536c64a40e0 Author: rfscholte <[email protected]> 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." ); } }
