From 239b5b65f27d0640483bde24b8ff0cfdb30a26f5 Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Wed, 26 Mar 2014 21:34:09 -0700 Subject: [PATCH] Buck: Fix dependency for javadoc target This change fixes wrong dependency: it should be JAR with classes and not JAR with source files in it. Change-Id: I405c5c6fd4de0cd28efbda06d22189ca85ded349 --- gerrit-plugin-gwtui/BUCK | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gerrit-plugin-gwtui/BUCK b/gerrit-plugin-gwtui/BUCK index 70490e2e8f..0b87bb1bad 100644 --- a/gerrit-plugin-gwtui/BUCK +++ b/gerrit-plugin-gwtui/BUCK @@ -53,6 +53,6 @@ java_doc( pkg = 'com.google.gerrit', paths = ['src/main/java'] + COMMON, srcs = SRCS + glob(COMMON), - deps = DEPS + ['//gerrit-gwtui-common:client-src-lib'], + deps = DEPS + ['//gerrit-gwtui-common:client-lib2'], visibility = ['PUBLIC'], )