If your favorite diff tool isn't supported out of the box, you can create your own custom extensions.
Here's an example:
public class CustomReporter extends GenericDiffReporter
{
// optional singleton, but improves performance
public static final CustomReporter INSTANCE = new CustomReporter();
public CustomReporter()
{
super("/fullpath/to/diffProgram.exe");
}
}
See Also: Reporters