Hi everyone. I've relatively new to Gradle and I'm using it successfully for my non-java project. We are building "grammars" using various custom perl & groovy scripts and I manage to rapidly wrap a build system thanks to Gradle (very good tool btw!). We're using the 'multi-project' approach where each artifact is build by one project. Overall, it's pretty clean.
Now I would like to use junit tests to perform various validation and verification steps on the many grammars produced. Is there a way I could 'recycle' the 'test' infrastructure to be able to produce junit tests and profit for the built-in reports? From what I understood, that's tied to the 'java' plugin (which I'm not using because I'm not compiling java code). Thanks for your help! Jp
