
de.jball.sonar.hybris.java.HybrisJavaRulesPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-hybris Show documentation
Show all versions of sonar-hybris Show documentation
SonarQube Rules for Hybris
package de.jball.sonar.hybris.java;
import org.sonar.api.Plugin;
/**
* Entry point of the plugin
*/
public class HybrisJavaRulesPlugin implements Plugin {
@Override
public void define(Context context) {
// server extensions -> objects are instantiated during server startup
context.addExtension(HybrisJavaRulesDefinition.class);
// batch extensions -> objects are instantiated during code analysis
context.addExtension(HybrisJavaFileCheckRegistrar.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy