Scan targets for jettyRun plugin

Is there a way to add extra directories/files to scan for changes to the jettyRun plugin? Similar to the maven jetty plugin scan targets option.

Yep, setExtraScanTargets().

jettyRun {
    extraScanTargets = [file('src/extraSrcDir'), file('src/extraSrcDir2')]
}

Thanks, I found it in the source code. It is not documented at all?

I included a link to the javadoc in my post.

Ok. But nothing in the DSL reference.