670b1c19efaf68eaf8be2a753ee904622f81bad5
[JavaForFun] /
1 package de.example.plugins.custom;
2
3 import org.sonar.plugins.java.api.CheckRegistrar;
4
5 import de.example.custom.checks.CheckList;
6
7 public class CustomRulesCheckRegistrar implements CheckRegistrar {
8
9         @Override
10         public void register(RegistrarContext registrarContext) {
11             registrarContext.registerClassesForRepository(CheckList.REPOSITORY_KEY, CheckList.getJavaChecks(), CheckList.getJavaTestChecks());  
12         }
13
14 }