I want to use the boofcv and the openimaj libs in a modular javafx application which uses the java module system.
The problem is that both libs are using split packages and that is not allowed. I have now learned from the web that in java9 there is the cmd patch-modules which should merge the modules into one.
But how can I do this with maven ? The maven compiler throws "illegal argument" if I try to use "--patch-modules" as an argument.
Does anybody know how can I use maven with split packages ?