I need to do a find in files. I want to ignore or exclude generated files, like JAX-WS artifacts or classes in target folders. How can I tell IDEA to exclude these files from th
I use the next pattern to exclude generated files
!file:*intermediates*/&&!file:*generated*/&&!lib:*..*
[How to add a new pattern follow]