This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch close in repository https://gitbox.apache.org/repos/asf/maven-jmod-plugin.git
The following commit(s) were added to refs/heads/close by this push: new 3e63207 fix 3e63207 is described below commit 3e63207d7e35c36962a8d317dbc566871605f3ae Author: Elliotte Rusty Harold <elh...@ibiblio.org> AuthorDate: Wed Dec 18 10:26:23 2024 -0500 fix --- src/main/java/org/apache/maven/plugins/jmod/JModListMojo.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/maven/plugins/jmod/JModListMojo.java b/src/main/java/org/apache/maven/plugins/jmod/JModListMojo.java index 297f4ed..8f38c2b 100644 --- a/src/main/java/org/apache/maven/plugins/jmod/JModListMojo.java +++ b/src/main/java/org/apache/maven/plugins/jmod/JModListMojo.java @@ -73,6 +73,7 @@ public class JModListMojo extends AbstractJModMojo { Commandline cmd = createJModListCommandLine(); cmd.setExecutable(jModExecutable); + getLog().info("The following files are contained in the module file " + jmodFile.getAbsolutePath()); executeCommand(cmd, outputDirectory); }