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/08/18 14:45:38 UTC

[maven-jlink-plugin] branch MJLINK-23 created (now 09527d6)

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

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


      at 09527d6  [MJLINK-23] - Allow setting additional modulepaths

This branch includes the following new commits:

     new 09527d6  [MJLINK-23] - Allow setting additional modulepaths

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-jlink-plugin] 01/01: [MJLINK-23] - Allow setting additional modulepaths

Posted by kh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 09527d6cd7c9f397fbca498b4fc0f0df797fa280
Author: Guillermo González de Agüero <z0...@gmail.com>
AuthorDate: Sat Aug 18 16:36:46 2018 +0200

    [MJLINK-23] - Allow setting additional modulepaths
---
 src/main/java/org/apache/maven/plugins/jlink/JLinkMojo.java | 5 +++++
 1 file changed, 5 insertions(+)

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 ccc82a6..79691a5 100644
--- a/src/main/java/org/apache/maven/plugins/jlink/JLinkMojo.java
+++ b/src/main/java/org/apache/maven/plugins/jlink/JLinkMojo.java
@@ -168,6 +168,11 @@ public class JLinkMojo
     @Parameter
     private String endian;
 
+    /**
+     * Include additional paths on the <code>--module-path</code> option.
+     * Project dedependencies and JDK modules are automatically added.
+     */
+    @Parameter
     private List<String> modulePaths;
 
     /**