Open Erwin282 opened 3 months ago
即便在pom.xml中手动指定${javafx.platform}为linux,win,mac,都没用;
没什么好的方式,只能通过传统的Java项目,然后添加User Library,这样是可行的;
实在要用Maven方式,那只能通过systemPath的方式引入;
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>${jfx.version}</version>
<scope>system</scope>
<systemPath>${jfx.sdk.path}/lib/javafx.base.jar</systemPath>
</dependency
pom.xml File leads to the error described in the title.
How to solve it ?
...