javafx-maven-plugin
javafx-maven-plugin copied to clipboard
Maven plugin to run JavaFX 11+ applications
From #21, when running inside an IDE (IntelliJ in my case), the plugin ignores whatever JDK we have selected for the project. This can be solved in the plugin configuration...
I have defined the `commandlineArgs` parameter, but it's never added to launcher. I'm using Java 17 on Linux. **Configuration:** ``` org.openjfx javafx-maven-plugin 0.0.8 true 2 true true appName -Xmx7G -Dfile.encoding=UTF-8...
Hello! I'm trying to build a runtime image for my project, but I getting the following error: [DEBUG] Executing command line: [C:\Java\jdkfx-21.0.1\bin\jlink.exe, --module-path, d:\projects\java\processing-toolkit\target\classes;C:\Users\Sun\.m2\repository\org\openjfx\javafx-base\21.0.1\javafx-base-21.0.1-win.jar;C:\Users\Sun\.m2\repository\org\openjfx\javafx-controls\21.0.1\javafx-controls-21.0.1-win.jar;C:\Users\Sun\.m2\repository\org\openjfx\javafx-graphics\21.0.1\javafx-graphics-21.0.1-win.jar, --add-modules, app, --output, d:\projects\java\processing-toolkit\target\image, --compress, 0,...
Use the following configuration:  When we execute javafx:jlink, it will generate a compressed package named hellozip.zip , the structure after decompression is roughly like this  The generated executable...
Bumps [org.apache.maven:maven-core](https://github.com/apache/maven) from 3.6.0 to 3.8.1. Commits 05c21c6 [maven-release-plugin] prepare release maven-3.8.1 d295dc3 [MNG-7128] keep blocked attribute from mirrors in artifact repositories a469068 next version in branch 3.8.x is 3.8.1-SNAPSHOT...
Bumps [org.apache.maven:maven-compat](https://github.com/apache/maven) from 3.6.0 to 3.8.1. Commits 05c21c6 [maven-release-plugin] prepare release maven-3.8.1 d295dc3 [MNG-7128] keep blocked attribute from mirrors in artifact repositories a469068 next version in branch 3.8.x is 3.8.1-SNAPSHOT...
Bumps [org.codehaus.plexus:plexus-archiver](https://github.com/codehaus-plexus/plexus-archiver) from 3.6.0 to 4.8.0. Release notes Sourced from org.codehaus.plexus:plexus-archiver's releases. 4.8.0 🚀 New features and improvements Add tzst alias for tar.zst archiver/unarchived (#274) @slawekjaranowski 🐛 Bug Fixes detect...
run cmd `run mvn clean javafx:jlink` show erorr `Process exited with an error: 1 (Exit value: 1)`. please help me
### Version 0.0.8 ### Description It appears `asyncDestroyOnShutdown` does not work correctly; the Maven JVM exits and the JavaFX window remains open. The underlying issue is Apache Commons Exec [EXEC-121](https://issues.apache.org/jira/browse/EXEC-121):...
Currently only `asyncDestroyOnShutdown` exists for async execution. However, no equivalent option exists for synchronous execution. Could you please add such an option? Synchronous execution can be quite convenient because you...