I have a project that is build using SBT which packages a single jar using the one-jar plugin. That project contains a bunch of json files in src/main/resources/fixture whic
I think one-jar uses a special classloading mechanism?
Yes, this must be true since there is no standardized way to load classes that packaged into dependency jar that is in turn packaged into your application jar. This usually is implemented with additional classloader trickery.
Loading resources when using One-JAR is documented here.