blob: 0517fada282a4e56fb516f9c0c8eda4d61e7de41 [file] [log] [blame]
Doug Kelly65280012014-05-09 17:25:42 -05001gerrit_plugin(
2 name = 'motd',
3 srcs = glob(['src/main/java/**/*.java']),
4 resources = glob(['src/main/resources/**/*']),
5 manifest_entries = [
6 'Gerrit-PluginName: motd',
7 'Gerrit-Module: com.googlesource.gerrit.plugins.motd.Module',
8 'Implementation-Title: Message of the Day',
9 'Implementation-URL: https://gerrit.googlesource.com/plugins/motd',
10 ],
11 # Deps shared with Gerrit but not in the plugin API.
12 provided_deps = [
Doug Kelly65280012014-05-09 17:25:42 -050013 '//lib/commons:net',
14 ],
15)
16