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/06/12 11:29:23 UTC

[maven-gpg-plugin] branch stabilize updated: Check if the deleteOnExit is causing an issue, or some temp policy

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


The following commit(s) were added to refs/heads/stabilize by this push:
     new 91e62c5  Check if the deleteOnExit is causing an issue, or some temp policy
91e62c5 is described below

commit 91e62c554f11f055b07a1fcca0250b8a978fb7aa
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Jun 12 13:29:14 2020 +0200

    Check if the deleteOnExit is causing an issue, or some temp policy
---
 src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java b/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java
index 75e2ab2..33889de 100644
--- a/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java
+++ b/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java
@@ -565,7 +565,7 @@ public class SignAndDeployFileMojo
             }
 
             File generatedPom = tempFile.toFile();
-            generatedPom.deleteOnExit();
+            // generatedPom.deleteOnExit();
 
             return generatedPom;
         }