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:43:55 UTC

[maven-gpg-plugin] branch stabilize updated: try with canonicalFile

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 6662950  try with canonicalFile
6662950 is described below

commit 6662950106bba38ef2d49ff4ddb30dda24366338
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Jun 12 13:43:46 2020 +0200

    try with canonicalFile
---
 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 33889de..adc0d96 100644
--- a/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java
+++ b/src/main/java/org/apache/maven/plugins/gpg/SignAndDeployFileMojo.java
@@ -567,7 +567,7 @@ public class SignAndDeployFileMojo
             File generatedPom = tempFile.toFile();
             // generatedPom.deleteOnExit();
 
-            return generatedPom;
+            return generatedPom.getCanonicalFile();
         }
         catch ( IOException e )
         {