Sukma Wardana
Sukma Wardana
Ok, below is my build.gradle ``` plugins { id 'application' id 'org.openjfx.javafxplugin' version '0.0.9' id 'org.javamodularity.moduleplugin' version '1.7.0' id 'org.beryx.jlink' version '2.22.3' } repositories { jcenter() mavenCentral() } java {...
Ok, now my `jlink` setup was like below: ``` jlink { options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages'] launcher{ name = 'ensia' } forceMerge('log4j-api') jpackage { installerOptions += [ '--verbose',...
Ok, so now my `jlink` configuration as below: ``` jlink { options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages'] launcher{ name = 'ensia' } forceMerge('log4j-api') jpackage { installerOptions += [ '--verbose',...
Thanks for the clarification. But, last question I think. On the `build/jpackage` directory I saw the `.rpm` generated file and the directory, that I believe the raw content of `.rpm`...
I could execute the `/home/sukma/workspace/project/oss/ensia/build/jpackage/ensia/lib/runtime/bin/java` from my command line, did I missing something on my jlink setup?
No, actually my Bootstrap class don't have any code to find a JVM. Here is my Bootstrap class. ``` import com.swardana.ensia.gui.MainVisual; import javafx.application.Application; import javafx.scene.Scene; import javafx.stage.Stage; import org.apache.logging.log4j.LogManager; import...
Hi All, Sorry to resurrect the old issue, but I have requirements to test an `EventHandler` for `KeyEvent`. is this could be handled by TestFX? If yes how could I...