I have compiled an application that uses OpenJFX, it currently exists as a JAR that works properly on the machine it was compiled on.
However, when sent to a machine that has the latest JRE installed, it fails to start and reports a "JNI Error". However on this same machine, if the latest Java SDK is installed it runs fine.
I am using maven, you can find my pom.xml below
From what I can find, there is no requirement for OpenJFX to have the JDK installed on the client machine. So I believe this to be an issue in how I am/IntelliJ is compiling this application.
Here is an image of how my project settings are setup.
Here is my POM.xml
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dev.christopherallen</groupId>
<artifactId>fooProject</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>15</maven.compiler.source>
<maven.compiler.target>15</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>launcher</Main-Class>
</manifestEntries>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
</project>
Does anyone know of how I can compile this application to not require the JDK, it doesn't make very much sense to deploy a Java application where the end-user has to install OpenJDK.
Also, I may be overlooking another detail here if so please educate me!
question from:
https://stackoverflow.com/questions/65909035/compiling-a-java-application-without-client-jdk-requirement 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…