Files
getting-started/core-java/retrofit/introduction-to-retrofit/SimpleLibraryApplication/spotbugs-exclude.xml
ranjanih 2185f9c68d Introduction to retrofit (#185)
* Initial 3rd party library application

* Add basic auth to app and swagger-ui

* Modifications

* Audit application Initial commit

* Update README

* Application header changes

* Caching

* sync async requests

* Additional changes

* Unit tests

* Updates

* Mistaken refactoring

* Mistaken refactoring

* Mock updates

* Test updates

* Updates

Co-authored-by: ranjani2412 <53815317+ranjani2412@users.noreply.github.com>
2022-05-18 06:27:51 +10:00

87 lines
2.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<Match>
<!-- This is required for Immutables (or any annotation processor generated classes causing havoc) -->
<Package name="~.*\.model\.?.*"/>
<Bug pattern="NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION"/>
</Match>
<Match>
<!-- Sample model class. Need not be used -->
<Package name="~.*\.model\.?.*"/>
<Bug pattern="UUF_UNUSED_FIELD"/>
</Match>
<Match>
<!-- Sample model class. Need not be used -->
<Package name="~.*\.model\.?.*"/>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<!-- Sample model class. Need not be used -->
<Package name="~.*\.config\.?.*"/>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<!-- Sample model class. Need not be used -->
<Package name="~.*\.config\.?.*"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<!-- Sample model class. Need not be used -->
<Package name="~.*\.model\.?.*"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<!-- Sample model class. Need not be used -->
<Package name="~.*\.exception\.?.*"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<!-- Sample model class. Need not be used -->
<Package name="~.*\.exception\.?.*"/>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<!-- Sample model class. Need not be used -->
<Package name="~.*\.web\.?.*"/>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<!-- Sample model class. Need not be used -->
<Package name="~.*\.web\.?.*"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<!-- Sample model class. Need not be read -->
<Package name="~.*\.model\.?.*"/>
<Bug pattern="URF_UNREAD_FIELD"/>
</Match>
<Match>
<Package name="~.*\.model\.?.*"/>
<Bug pattern="RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT"/>
</Match>
</FindBugsFilter>