You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2020/06/11 07:33:34 UTC

[maven] branch master updated: [MNG-6828] DependencyResolutionException breaks serialization

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

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new 2537e53  [MNG-6828] DependencyResolutionException breaks serialization
2537e53 is described below

commit 2537e5306c96b3e7d3ca5bacc2dd69fcb582de8c
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Wed Jan 1 16:37:10 2020 +0100

    [MNG-6828] DependencyResolutionException breaks serialization
---
 .../java/org/apache/maven/project/DependencyResolutionException.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java b/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java
index 50e601e..ecd0151 100644
--- a/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java
+++ b/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java
@@ -26,7 +26,7 @@ public class DependencyResolutionException
     extends Exception
 {
 
-    private DependencyResolutionResult result;
+    private final transient DependencyResolutionResult result;
 
     public DependencyResolutionException( DependencyResolutionResult result, String message, Throwable cause )
     {