I would like to exclude a few directories form error prone. I was trying to use a XepExcludedPaths flag but it seems that it works only for the one path which is a regular expresion of excluded location.
options.errorprone.errorproneArgs.add("-XepExcludedPaths:.*/legacy/model/.*")
works
options.errorprone.errorproneArgs.add("-XepExcludedPaths:.*/new/model/.*,.*/build/.*")
doesn't
Is it possible? I used wrong separator?