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/08/13 09:03:55 UTC

[maven-dependency-plugin] branch stabilize created (now d78a7d2)

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

rfscholte pushed a change to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git.


      at d78a7d2  log NPE

This branch includes the following new commits:

     new d78a7d2  log NPE

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[maven-dependency-plugin] 01/01: log NPE

Posted by rf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit d78a7d217ffc062a1e4a7ea379ad2a2e3eec311b
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Aug 13 11:03:46 2021 +0200

    log NPE
---
 src/test/java/org/apache/maven/plugins/dependency/TestGetMojo.java | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/test/java/org/apache/maven/plugins/dependency/TestGetMojo.java b/src/test/java/org/apache/maven/plugins/dependency/TestGetMojo.java
index ee23525..8da8d21 100644
--- a/src/test/java/org/apache/maven/plugins/dependency/TestGetMojo.java
+++ b/src/test/java/org/apache/maven/plugins/dependency/TestGetMojo.java
@@ -132,6 +132,11 @@ public class TestGetMojo
 
             mojo.execute();
         }
+        catch( NullPointerException e )
+        {
+            e.printStackTrace();
+            throw e;
+        }
         finally
         {
             server.stop();