我正在尝试使用Java14在Eclipse 2020-06中构建一个小程序。我有Guava 29作为依赖项。这是我的module-info.java
module xxx {
exports main;
requires java.base;
requires java.desktop;
requires java.prefs;
requires com.google.common;
}
但是,当我启动程序时,会收到以下消息:
Error occurred during initialization of boot layer
java.lang.module.FindException: Module com.google.common not found, required by xxx
番石榴罐位于Modulepath下。我没有使用Maven等任何构建工具。
在删除requires
之后,我检查了编译器的建议。这是编译器建议的要求,但我以前已经有过。
参见:https://prnt.sc/unp2hf