For the sake of later readers this is what I got from the MyEclipse support
Your project has module-info.java file which is introduced from Java 9 onwards.
Please read these for more details about modules :
https://www.oracle.com/corporate/fea...9-modules.html
Module Directives in Java 9 - codeNuclear
If there is a module-info.java file in the project, then you need to add the jar to the Modulepath section in the Libraries tab instead of Classpath and then declare the module dependencies in the file. For this case of gson jar, this is how the module-info.java file should look :
1
2
3
module noobchain {
requires gson;
}
Please make the changes accordingly and let us know how it works.
–Swapna
Genuitec Support[COLOR="Silver"]