javafx-maven-plugin icon indicating copy to clipboard operation
javafx-maven-plugin copied to clipboard

Maven plugin to run JavaFX 11+ applications

Results 80 javafx-maven-plugin issues
Sort by recently updated
recently updated
newest added

Hi! Will there be some sort of build .exe or equivalent files or at least a fat jar support in the future? Thanks a lot https://github.com/javafx-maven-plugin/javafx-maven-plugin this plugin is the...

It would be nice to have a way to specify the additional parameters to the java command. The JLINK_VM_OPTIONS= is empty and is not configurable from the pom file. In...

here is code: ``` public class Test extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { System.out.println("AWT_TOOLKIT class name:" +...

The target and source language levels specified in the POM are both Java8, which is consistent with expectations for a maven plugin, but the plugin cannot be built with any...

I'm using the code provided at: https://github.com/openjfx/samples/tree/master/HelloFX/Maven I did set the JAVA_HOME environment variable to point to Java 13.0.1. However I get the following exception: > C:\_dev\NetBeansProjects\hellofx>echo %JAVA_HOME% > C:\_dev\jdk-13.0.1...

Currently when running `mvn javafx:run`, the plugin compiles if there is no initial compilation (`target/classes` doesn't exist). Later on, any change in the source code is not tracked and requires...

Intellij skips my break points when trying to debug my application. I believe its the same issue as this (unresolved) issue https://github.com/javafx-maven-plugin/javafx-maven-plugin/issues/318

Hi! I'm working on a project where building a cross-platform JAR is required. This is our pom.xml: https://github.com/lielfr/lilach/blob/master/lilach-client/pom.xml Whenever trying to run it using `mvn javafx:run`, maven refuses to run...

Hello, javafx-maven-plugin is a good plugin... But after creating and runing custom jre several times I still cannot find the jar file anywhere in the target folder... After some search...