On Mon, Aug 12, 2013 at 6:58 AM, ogondza <
ogo...@gmail.com> wrote:
> it would be an interesting feature for core
Definitely it would, though for something this complex I cannot help
but ask if we should not first make a real effort to split JUnit
reporting out of core into a proper plugin.
> spinning a thread on slave to monitor new report files
Or use java.nio.file.WatchService when available. Most practical when
the report wildcard contains just a single wildcard in the final path
segment, i.e. ‘some-dir/TEST-*.xml’ can be easily monitored by
watching some-dir; in the general case (e.g. ‘**/TEST-*.xml’) you
might need to watch the whole workspace, which is inefficient using
the current API.