Francois Ferrand | 0f9a2b2 | 2018-03-14 16:37:29 +0100 | [diff] [blame^] | 1 | load("//tools/bzl:plugin.bzl", "gerrit_plugin") |
| 2 | |
| 3 | gerrit_plugin( |
| 4 | name = "metrics-reporter-prometheus", |
| 5 | srcs = glob(["src/main/java/**/*.java"]), |
| 6 | manifest_entries = [ |
| 7 | "Gerrit-PluginName: metrics-reporter-prometheus", |
| 8 | ], |
| 9 | resources = glob(["src/main/resources/**/*"]), |
| 10 | deps = [ |
| 11 | "@prometheus_simpleclient//jar", |
| 12 | "@prometheus_simpleclient_common//jar", |
| 13 | "@prometheus_simpleclient_servlet//jar", |
| 14 | "@metrics_prometheus//jar", |
| 15 | ], |
| 16 | ) |