I'm following the Project Jigsaw: Module System Quick-Start Guide in IntelliJ IDEA 2018.2.5. I did everything right in the IDE until The linker section. Is there any way to use jlink in IntelliJ IDEA?
jlink (see JEP 282) is the linker tool and can be used to link a set of modules, along with their transitive dependences, to create a custom modular run-time image (see JEP 220).
- Project Jigsaw: Module System Quick-Start Guide
I found this Ability to produce JLink artefacts issue in JetBrains Bug & Issue Tracker, but it has been open for more than 2 years and it doesn't even have a description.
As a workaround, I have seen this Is there a maven jigsaw jlink plugin? interesting question and the most promising alternative seems to be the Apache Maven JLink Plugin, but it has also been there for more than 2 years and it hasn't been released yet.
maven-jlink-plugin:3.0.0-alpha-1
a try? Feedback is a crucial aspect before moving that to releases I believe. The blog linked in the answer there should help you with the process. – Sufflate