Skip to content

Instantly share code, notes, and snippets.

@jeffque
Created October 3, 2018 04:57
Show Gist options
  • Save jeffque/42cd11d1ba83f4cad667d21ba013d620 to your computer and use it in GitHub Desktop.
Save jeffque/42cd11d1ba83f4cad667d21ba013d620 to your computer and use it in GitHub Desktop.
Compilando tudo que contenha `softsite`, porém que não seja o `tc-compiler-help`
CompilationBuilder builder = ...;
builder.setMustCompile(jarPath -> jarPath.matches("^.*softsite.*$") && !jarPath.matches("^.*tc-compiler-help.*$"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment