From 48a30b60c7e41abc10da9e1befe1d8b02524a3db Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Tue, 15 Jul 2014 23:39:03 +0200 Subject: [PATCH] Buck: Export gerrit-antlr artifacts to plugin-api library Because of missing export for gerrit-antlr artifacts in tree Gerrit plugin cannot compile when they reference gerrit antlr classes. For example reviewers plugin needs it. Fix by exporting these classes, as it is already the case for other projects, like gerrit-common. Change-Id: I9e5832310271821c1bf355841ad32ff92f60000a --- gerrit-plugin-api/BUCK | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gerrit-plugin-api/BUCK b/gerrit-plugin-api/BUCK index 06e42fb384..a6afafb365 100644 --- a/gerrit-plugin-api/BUCK +++ b/gerrit-plugin-api/BUCK @@ -20,6 +20,8 @@ java_binary( java_library( name = 'lib', exported_deps = PLUGIN_API + [ + '//gerrit-antlr:query_exception', + '//gerrit-antlr:query_parser', '//gerrit-common:annotations', '//gerrit-common:server', '//gerrit-extension-api:api',