In my Play application, I use Reflections ( http://code.google.com/p/reflections/ ) to get some fields annotated with a particular annotation.
Reflections requires to have access to the .class files to create its index. In DEV mode it works great since Play generates the .class files in tmp/classes . But in PROD mode, Play doesn't generate those .class files by default. And therefore my application just doesn't work!
Is there a way to force Play to generate the .class files, even in PROD mode?