尝试在 Netbeans 19 中安装和激活 JavaFX 时出现以下错误。
There were some problems while storing JavaFX Implementation for Windows (amd64).
Cause: Cannot resolve external reference to [m2:/org.openjfx:javafx-base:17.0.7:jar:win]
非常感谢任何解决此错误的帮助。我在 Windows 10 上使用 Netbeans。
提前致谢。
您的本地 Maven 存储库中似乎没有 openjfx 库。 尝试将以下依赖项添加到 pom.xml 文件中的依赖项部分。
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-base -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>17.0.7</version>
</dependency>
PS。 MVN Repository 是查找缺失依赖项的好工具。