File tree 4 files changed +5
-5
lines changed
main/java/com/googlesource/gerrit/plugins/webhooks
test/java/com/googlesource/gerrit/plugins/webhooks/rest
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ gerrit_plugin(
11
11
srcs = glob (["src/main/java/**/*.java" ]),
12
12
manifest_entries = [
13
13
"Gerrit-PluginName: webhooks" ,
14
- "Gerrit-Module: com.googlesource.gerrit.plugins.webhooks.Module " ,
14
+ "Gerrit-Module: com.googlesource.gerrit.plugins.webhooks.PluginModule " ,
15
15
"Implementation-Title: webhooks plugin" ,
16
16
"Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/webhooks" ,
17
17
"Implementation-Vendor: Gerrit Code Review" ,
Original file line number Diff line number Diff line change 29
29
import java .util .concurrent .ScheduledExecutorService ;
30
30
import org .apache .http .impl .client .CloseableHttpClient ;
31
31
32
- public class Module extends FactoryModule {
32
+ public class PluginModule extends FactoryModule {
33
33
private final ProcessorModule processors ;
34
34
35
35
@ Inject
36
- public Module (ProcessorModule processors ) {
36
+ public PluginModule (ProcessorModule processors ) {
37
37
this .processors = processors ;
38
38
}
39
39
Original file line number Diff line number Diff line change 34
34
import org .eclipse .jgit .transport .RefSpec ;
35
35
import org .junit .Test ;
36
36
37
- @ TestPlugin (name = "webhooks" , sysModule = "com.googlesource.gerrit.plugins.webhooks.Module " )
37
+ @ TestPlugin (name = "webhooks" , sysModule = "com.googlesource.gerrit.plugins.webhooks.PluginModule " )
38
38
public class GetRemoteIT extends LightweightPluginDaemonTest {
39
39
40
40
@ Test
Original file line number Diff line number Diff line change 32
32
import org .junit .Before ;
33
33
import org .junit .Test ;
34
34
35
- @ TestPlugin (name = "webhooks" , sysModule = "com.googlesource.gerrit.plugins.webhooks.Module " )
35
+ @ TestPlugin (name = "webhooks" , sysModule = "com.googlesource.gerrit.plugins.webhooks.PluginModule " )
36
36
public class UpdateRemoteIT extends LightweightPluginDaemonTest {
37
37
38
38
private String fooEndpoint ;
You can’t perform that action at this time.
0 commit comments