Repository: incubator-tamaya Updated Branches: refs/heads/master 14d3e2ba0 -> 2f562e6ba
TAMAYA-53 Added exclusions for all issues found by FindBugs. I will check them later. So I can active FindBugs for each Maven build. Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/2f562e6b Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/2f562e6b Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/2f562e6b Branch: refs/heads/master Commit: 2f562e6ba0d48a6c269468e0d557895494cd36f2 Parents: 14d3e2b Author: Oliver B. Fischer <[email protected]> Authored: Sat Jan 17 23:41:56 2015 +0100 Committer: Oliver B. Fischer <[email protected]> Committed: Sat Jan 17 23:41:56 2015 +0100 ---------------------------------------------------------------------- .../resources/findbugs/findbugs-exclude.xml | 51 ++++++++++++++++++++ 1 file changed, 51 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/2f562e6b/buildconfigurations/src/main/resources/findbugs/findbugs-exclude.xml ---------------------------------------------------------------------- diff --git a/buildconfigurations/src/main/resources/findbugs/findbugs-exclude.xml b/buildconfigurations/src/main/resources/findbugs/findbugs-exclude.xml index 9948661..a79f53b 100644 --- a/buildconfigurations/src/main/resources/findbugs/findbugs-exclude.xml +++ b/buildconfigurations/src/main/resources/findbugs/findbugs-exclude.xml @@ -78,4 +78,55 @@ under the License. <Bug pattern="OS_OPEN_STREAM"/> </Match> + + <!-- Issues to review --> + + <Match> + <Class name="org.apache.tamaya.core.internal.PropertiesFileLoader"/> + </Match> + + + <Match> + <Class name="org.apache.tamaya.resolver.internal.URLResolver" /> + </Match> + <Match> + <Class name="org.apache.tamaya.resolver.internal.ResourceResolver" /> + </Match> + <Match> + <Class name="org.apache.tamaya.resolver.internal.FileResolver" /> + </Match> + <Match> + <Class name="org.apache.tamaya.resolver.internal.DefaultExpressionEvaluator" /> + </Match> + <Match> + <Class name="org.apache.tamaya.inject.internal.Utils" /> + </Match> + <Match> + <Class name="org.apache.tamaya.inject.internal.ConfiguredSetterMethod" /> + </Match> + <Match> + <Class name="org.apache.tamaya.inject.internal.ConfiguredField" /> + </Match> + <Match> + <Class name="org.apache.tamaya.inject.internal.ConfigChangeCallbackMethod" /> + </Match> + <Match> + <Class name="org.apache.tamaya.inject.PropertyChangeSetBuilder" /> + </Match> + <Match> + <Class name="org.apache.tamaya.inject.internal.ConfiguredType" /> + </Match> + <Match> + <Class name="org.apache.tamaya.inject.internal.ConfigTemplateInvocationHandler" /> + </Match> + <Match> + <Class name="org.apache.tamaya.inject.DynamicValue" /> + </Match> + <Match> + <Class name="" /> + </Match> + <Match> + <Class name="" /> + </Match> + </FindBugsFilter>
