1c431ac12e6d31efc9f7aa2d7a21366020f14c92
[JavaForFun] /
1 package de.example.plugins.helloworld;
2
3 import org.sonar.api.Plugin;
4
5 import com.google.common.collect.ImmutableList;
6
7
8 public class HelloWorldPlugin implements Plugin {
9
10   @Override
11   public void define(Context context) {    
12     
13     ImmutableList.Builder<Object> builder = ImmutableList.builder();
14     builder.add(
15                 HelloWorldRulesDefinition.class,
16                 HelloWorldRulesCheckRegistrar.class);
17     
18     context.addExtensions(builder.build());
19   }
20 }