gradle Jigsaw module not found
问题 I try to run a very simple gradle project which uses java 9 modules, but i receive the following error. /home/vadim/IdeaProjects/test_modules/src/main/java/module-info.java:2: error: module not found: HdrHistogram requires HdrHistogram; ^ Here is it https://github.com/vad0/test_modules. The main class does basically nothing. package app; import org.HdrHistogram.Histogram; public class RunHdr { public static void main(String[] args) { final Histogram histogram = new Histogram(5); System.out