scalastyle-maven-plugin
scalastyle-maven-plugin copied to clipboard
Maven plugin for Scalastyle
We have a maven project with > 300 modules, and running `mvn scalastyle:check` sequentially takes > 3 minutes. We'd love to parallelize the execution and bring down the execution time.
Currently, it only works with simple resources (ie name.xml) but not with ones with directory path ( ie com/xxx/xxx/name.xml)
this way i can place execution at top level multi modules parent. Rather then at each scala modulepla Propose to introduce 'skipPomModule'. Can submit PR if needed.
Instead of building an output file in every nested module, having an option to consolidate scalastyle output in the top-level directory would be nice.
Have you thought of making scalastyle run only on files modified since last scalastyle run? A timestamp comparison of the source files and (if it exists) the scalastyle-output.xml file could...