有谁知道如何修复 Netbeans 19 中安装 JavaFX 的此错误

问题描述 投票:0回答:1

尝试在 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。

提前致谢。

java javafx netbeans
1个回答
0
投票

您的本地 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 是查找缺失依赖项的好工具。

© www.soinside.com 2019 - 2024. All rights reserved.