1
1
Fork 0
mirror of https://github.com/tonydamage/nux-env.git synced 2025-12-11 13:24:28 +01:00
nux-env/dev/exclude.findbugs.xml
Tony Tkacik e582ee3028 Added Findbugs exclusion settings
- Not report non-Unit testing issues for unit tests.

Signed-off-by: Tony Tkacik <tonydamage@gmail.com>
2015-07-03 12:04:09 +02:00

13 lines
336 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<Match>
<!-- the Match filter is equivalent to a logical 'And' -->
<Class name="~.*\.*Test" />
<!-- test classes are suffixed by 'Test' -->
<Not>
<Bug code="IJU" /> <!-- 'IJU' is the code for bugs related to JUnit test code -->
</Not>
</Match>
</FindBugsFilter>