You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/09/11 05:20:30 UTC

[maven-jlink-plugin] branch MJLINK-26 updated: fixup! fixup! fixup! ** WIP - [MJLINK-26] - Can not create an image from a single module project without a dependency

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

khmarbaise pushed a commit to branch MJLINK-26
in repository https://gitbox.apache.org/repos/asf/maven-jlink-plugin.git


The following commit(s) were added to refs/heads/MJLINK-26 by this push:
     new a04f234  fixup! fixup! fixup! ** WIP - [MJLINK-26] - Can not create an image from a single module project without a dependency
a04f234 is described below

commit a04f2344bbd91c36f1c3f73227712b467f91f017
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Tue Sep 11 07:20:31 2018 +0200

    fixup! fixup! fixup! ** WIP - [MJLINK-26] - Can not create an image from a single module project without a dependency
---
 src/main/java/org/apache/maven/plugins/jlink/JLinkMojo.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/jlink/JLinkMojo.java b/src/main/java/org/apache/maven/plugins/jlink/JLinkMojo.java
index 7c06023..a92a687 100644
--- a/src/main/java/org/apache/maven/plugins/jlink/JLinkMojo.java
+++ b/src/main/java/org/apache/maven/plugins/jlink/JLinkMojo.java
@@ -369,7 +369,7 @@ public class JLinkMojo
             }
 
             // This part is for the module in target/classes ? (Hacky..)
-            // FIXME: Is there a better way to identify ?
+            // FIXME: Is there a better way to identify that code exists?
             if ( outputDirectory.exists() )
             {
                 List<File> singletonList = Collections.singletonList( outputDirectory );
@@ -390,7 +390,7 @@ public class JLinkMojo
                 }
             }
 
-        }
+        }   
         catch ( IOException e )
         {
             getLog().error( e.getMessage() );