我创建了一个maven项目,并向其中添加了一个JavaFX项目。
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>SEF-PROJ</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
<javafx.version>16</javafx.version>
<javafx.maven.plugin.version>0.0.6</javafx.maven.plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>${javafx.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>${javafx.maven.plugin.version}</version>
<configuration>
<executable>/home/mrsaiba/.jdks/corretto-1.8.0_292/jre</executable>
<mainClass>src.sampe.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>
当我运行mvnjavafx:run时,我得到了错误
无法对项目SEF-PROJ执行目标组织openjfx:javafx-maven-plugin:0.0.6:运行(默认-cli):错误
我在谷歌上搜索了几天,但没有找到任何有用的东西。我使用的是Java8和JavaFX 16(我不想使用新版本的Java)。我设置了JAVA_HOME,其中包含Java8 jre的路径。
1条答案
按热度按时间0pizxfdo1#
在Maven 3中,如果您刚刚下载失败并修复了它(例如,通过将jar上传到存储库),它将缓存失败。
要强制刷新,请在命令行中添加
-U
。来源:https://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException