I executed this command line:
java --module-path bin -m com.pantech.myModule/com.pantech.myModule.HelloWorld
But I am getting this error:
Error occurred during initialization of boot layer
java.lang.module.FindException: Module com.pantech.myModule not found
The module-info.class file is located in the com.pantech.myModule directory that is located in the bin directory. The HelloWorld.class file contains the main method and is located in the package directory within the com.pantech.myModule directory. Can someone help me on solving this?