我正在尝试使用bitbucket管道构建JavaFx项目。为此,我正在使用maven:3-jdk-8 docker image。此Docker映像使用OpenJDK 8而不是Oracle的OpenJDK 8(由于许可证问题),其中不包括JavaFx部分。请注意,我必须使用Java 8来构建我的项目! 我遇到的问题是我无法仅使用该docker映像来构建应用程序。
如对同一问题(https://stackoverflow.com/a/40167253/2000338)的回答中所建议: 我尝试使用此bitbucket-pipelines.yml尝试克服这种情况:
image: maven:3-jdk-8
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- apt-get update
- apt-get install -y openjfx
- mvn clean install # -B batch mode makes Maven less verbose
在步骤2中,似乎已正确安装了openjfx。 但是在步骤3中,我收到以下错误消息:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compile) on project ***********: Compilation failure: Compilation failure:
[ERROR] /opt/atlassian/pipelines/agent/build/src/main/java/********/******/****/MainFx.java:[7,26] package javafx.application does not exist
它似乎仍然在抱怨缺少JavaFx库,但是我不知道为什么。 在开发人员机器上(Windows 7,jdk1.8.0_221),我可以执行maven构建而不会出现问题。
答案 0 :(得分:2)
以前的方法缺少的是javafx库不在类路径中。基本上为了使Maven构建工作,我必须将jfxrt.jar添加到类路径中。
我发现在安装javafx之后的maven:3-jdk-8
映像中,该库位于:
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jfxrt.jar
在构建运行期间将此文件添加到类路径中即可解决问题。
(对我有用)的一个想法是将该库作为system
范围包含在应用程序pom / dependecy部分中。
就我而言,我为此做了一个Maven个人资料:
<profiles>
<profile>
<id>docker_build</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>javaFX</artifactId>
<version>2.2</version>
<scope>system</scope>
<systemPath>${javafx-location}</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>
要运行此Maven构建,必须发出适当的maven命令以添加此配置文件。例如。
mvn clean install -P docker_build -Djavafx-location=/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jfxrt.jar
为简化此过程,我使用以下Dockerfile制作了Docker映像:
FROM maven:3-jdk-8
RUN apt-get update && \
apt-get install -y --no-install-recommends openjfx
COPY settings.xml /root/.m2/
使用以下maven settings.xml文件:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>/usr/share/maven/ref/repository</localRepository>
<activeProfiles>
<activeProfile>docker_build</activeProfile>
</activeProfiles>
<profiles>
<profile>
<id>docker_build</id>
<properties>
<javafx-location>/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jfxrt.jar</javafx-location>
</properties>
</profile>
</profiles>
</settings>
如果有人发现它有用,我还将其发布到Docker中心: https://hub.docker.com/r/brzigonzales/maven-javafx