Do not include cookbook plugin in release.war

1164e53283 (Allow to add custom core
plugins in release build, 2015-12-11) added an item CUSTOM to the buck
plugin rules to make it easier for people to add additional 'core'
plugins in a release build of a forked copy of Gerrit.

When that was ported to bazel, it included cookbook-plugin by mistake.
As a result, when someone runs

  bazel build release

they get a copy of gerrit with the cookbook plugin included and
enabled, which is almost never what they wanted.

Fix it by making the default list of custom plugins an empty list again.

Change-Id: I9b1653046bd368b8ec5c1978a15bd675c5dd31e7
This commit is contained in:
Paladox none 2017-02-28 23:55:30 +00:00 committed by Jonathan Nieder
parent 817621e115
commit 021d7df24c

View File

@ -8,5 +8,5 @@ CORE_PLUGINS = [
]
CUSTOM_PLUGINS = [
"cookbook-plugin",
# Add custom core plugins here
]