org.sonar.plugins.findbugs.FindbugsPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-findbugs-plugin Show documentation
Show all versions of sonar-findbugs-plugin Show documentation
SpotBugs is a program that uses static analysis to look for bugs in Java code. It can detect a variety of common coding mistakes, including thread synchronization problems, misuse of API methods.
/*
* SonarQube Findbugs Plugin
* Copyright (C) 2012 SonarSource
* [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.plugins.findbugs;
import java.util.Arrays;
import java.util.stream.Collectors;
import org.sonar.api.Plugin;
import org.sonar.api.batch.fs.FilePredicate;
import org.sonar.api.batch.fs.FilePredicates;
import org.sonar.plugins.findbugs.language.Jsp;
import org.sonar.plugins.findbugs.language.scala.Scala;
import org.sonar.plugins.findbugs.profiles.FindbugsContribProfile;
import org.sonar.plugins.findbugs.profiles.FindbugsProfile;
import org.sonar.plugins.findbugs.profiles.FindbugsSecurityAuditProfile;
import org.sonar.plugins.findbugs.profiles.FindbugsSecurityJspProfile;
import org.sonar.plugins.findbugs.profiles.FindbugsSecurityMinimalProfile;
import org.sonar.plugins.findbugs.profiles.FindbugsSecurityScalaProfile;
import org.sonar.plugins.findbugs.resource.ByteCodeResourceLocator;
import org.sonar.plugins.findbugs.rules.FbContribRulesDefinition;
import org.sonar.plugins.findbugs.rules.FindSecurityBugsJspRulesDefinition;
import org.sonar.plugins.findbugs.rules.FindSecurityBugsRulesDefinition;
import org.sonar.plugins.findbugs.rules.FindSecurityBugsScalaRulesDefinition;
import org.sonar.plugins.findbugs.rules.FindbugsRulesDefinition;
import org.sonar.plugins.java.Java;
public class FindbugsPlugin implements Plugin {
protected static final String[] SUPPORTED_JVM_LANGUAGES = {
Java.KEY, Jsp.KEY, Scala.KEY, "clojure"
};
protected static final String[] SUPPORTED_JVM_LANGUAGES_EXTENSIONS = {
"java", "jsp", "scala", "clj"
};
public static FilePredicate[] getSupportedLanguagesFilePredicate(FilePredicates pred) {
return Arrays.stream(SUPPORTED_JVM_LANGUAGES)
.map(s -> pred.hasLanguage(s))
.collect(Collectors.toList())
.toArray(new FilePredicate[SUPPORTED_JVM_LANGUAGES.length]);
}
@Override
public void define(Context context) {
context.addExtensions(FindbugsConfiguration.getPropertyDefinitions());
context.addExtensions(Arrays.asList(
FindbugsSensor.class,
FindbugsProfileExporter.class,
FindbugsProfileImporter.class,
FindbugsConfiguration.class,
FindbugsExecutor.class,
FindbugsProfile.class,
FindbugsContribProfile.class,
FindbugsSecurityAuditProfile.class,
FindbugsSecurityMinimalProfile.class,
FindbugsSecurityJspProfile.class,
FindbugsSecurityScalaProfile.class,
FindbugsRulesDefinition.class,
FbContribRulesDefinition.class,
FindSecurityBugsRulesDefinition.class,
FindSecurityBugsJspRulesDefinition.class,
FindSecurityBugsScalaRulesDefinition.class,
ByteCodeResourceLocator.class));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy