935868568c
Having a mechanism to discover, install and upgrade plugins is an expected feature for a core distribution. Plugin manager has been included since the very beginning in the binary packages (RPMs and Debs) and in the famous Docker image that has been pulled over 100k times. The only place where the plugin-manager is not present is the WAR package: this proposal fills the gap and aligns the package with the rest of the current distributions. Feature: Issue 10717 Change-Id: Ia5b9c74f177aac135100d3cf138a38697a2db0ca
22 lines
397 B
Python
22 lines
397 B
Python
CORE_PLUGINS = [
|
|
"codemirror-editor",
|
|
"commit-message-length-validator",
|
|
"delete-project",
|
|
"download-commands",
|
|
"gitiles",
|
|
"hooks",
|
|
"plugin-manager",
|
|
"replication",
|
|
"reviewnotes",
|
|
"singleusergroup",
|
|
"webhooks",
|
|
]
|
|
|
|
CUSTOM_PLUGINS = [
|
|
# Add custom core plugins here
|
|
]
|
|
|
|
CUSTOM_PLUGINS_TEST_DEPS = [
|
|
# Add custom core plugins with tests deps here
|
|
]
|