...
File Pattern | Result |
---|---|
com/parasoft/** | Returns all violations in the
But not:
|
**/test/*.java | Returns all violations in files with the ".java" suffix under test directories from anywhere in the directory tree, for example:
But not:
|
*:artifactId/** | Returns all violations in the Maven project with the specified artifactId, regardless of groupId. |
groupId:artifactId/** | Returns all violations in the Maven project identified by the full Maven coordinate groupId:artifactId. |
Performance
When creating file patterns, keep in mind that complex patterns will be slower. The table below illustrates how different pattern types affect search speed.
...