I'm trying to use Marlin in my application but I can't seem to get it to load. I'm using the Oracle JVM on Ubuntu 18.04. This is my Java command line:
/usr/lib/jvm/java-9-oracle/bin/java -Dsun.java2d.renderer=org.marlin.pisces.MarlinRenderingEngine --patch-module java.desktop=/home/mwallace/Downloads/marlin-0.9.2-Unsafe-OpenJDK9.jar -Dsun.java2d.xrender=true -Dsun.java2d.ui
Scale=2 -Dorg.slf4j.simpleLogger.defaultLogLevel=info -Xmx1024m -cp /mnt/share/apps/lib/v20180807-1524/* <more arguments for my application here>
This is the output of java -version:
java version "9.0.1"
Java(TM) SE Runtime Environment (build 9.0.1+11)
Java HotSpot(TM) 64-Bit Server VM (build 9.0.1+11, mixed mode)
I'm not seeing any output that indicates that Marlin is being loaded. I also noticed that if I substitute a bad path for the --patch-module argument (i.e a non existent file/directory) everything seems to hum happily along. So I have no way to know whether my command line is properly formatted, though the file I indicated is definitely there and readable.
Any help would be greatly appreciated.