| Doug Kelly | 6528001 | 2014-05-09 17:25:42 -0500 | [diff] [blame] | 1 | gerrit_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 Kelly | 6528001 | 2014-05-09 17:25:42 -0500 | [diff] [blame] | 13 | '//lib/commons:net', |
| 14 | ], |
| 15 | ) |
| 16 | |