Hi,
I am using a library (RethinkDB) that tries to use the Java 8 parameters compiler option to convert a Map<String,Object> to whatever class you specify. In my case, I am using Scala case classes. In order for this to work, the code needs to be compiled with the -parameters flag when you call javac. Since I am using Scala with Play, does anyone know how to get it to compile with that flag enabled, or if this is even possible? Ideally, I'd love to configure it in the build.sbt and not have to use environment variables.
Thanks,
-Sean