我有一个由maven构建的Java项目,可以在FreeBSD,Mac和Windows上编译并正常运行。但是,当我尝试在Linux上编译它时,出现以下错误:
The following artifacts could not be resolved: org.openjfx:javafx-controls:jar:${javafx.platform}:12, org.openjfx:javafx-graphics:jar:${javafx.platform}:12, org.openjfx:javafx-base:jar:${javafx.platform}:12: Could not find artifact org.openjfx:javafx-controls:jar:${javafx.platform}:12 in central (https://repo.maven.apache.org/maven2)
显然,它无法确定它是否在Linux上运行,因此我添加了
<javafx.platform>sources</javafx.platform>
到pom.xml的属性分区无效。但是,这样做的效果是,其他操作系统尝试下载linux版本,并且不再能够运行该软件(可以预期,但向我显示我正确编写了该属性)。我正在一个新的Ubuntu VM内进行测试,并且该VM能够编译和运行其他(非JFX)项目。我正式没主意了。
编辑:我当前的pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>swengf</groupId>
<artifactId>china</artifactId>
<packaging>jar</packaging>
<version>0.0-SNAPSHOT</version>
<name>ferfehlt</name>
<url>https://projects.isp.uni-luebeck.de/grp_f/sweng_f</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>10</java.version>
<junit.version>5.4.1</junit.version>
<javafx.version>12</javafx.version>
<javafx.platform>linux</javafx.platform>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>swengf.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.18</version>
</dependency>
</dependencies>
</project>
答案 0 :(得分:0)
我可以通过将<javafx.platform>linux</javafx.platform>
替换为<javafx.platform>\%linux\%</javafx.platform>
来使其工作。一位同事向我提出了这个建议,但我不知道为什么这样做有效。
答案 1 :(得分:0)
我无法复制Doralitze提出的解决方案。似乎<javafx.platform>
属性在org.openjfx.javafx中被特定于操作系统的配置文件覆盖。
我设法通过使用分类器强制执行确切的jar来解决此问题。例如:
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11.0.2</version>
<classifier>linux</classifier>
</dependency>
有效值为:linux, win, mac
我认为这只是一个丑陋的解决方法,但令人惊讶的是官方文档提出了相同的方法:https://openjfx.io/openjfx-docs/#modular