in src/main/java/com/googlesource/gerrit/plugins/manager/repository/CorePluginsDescriptions.java [27:46]
public CorePluginsDescriptions() {
pluginsDescriptions = new HashMap<>();
pluginsDescriptions.put("codemirror-editor", "CodeMirror plugin for polygerrit");
pluginsDescriptions.put(
"commit-message-length-validator",
"Plugin to validate that commit messages conform to length limits");
pluginsDescriptions.put("delete-project", "Provides the ability to delete a project");
pluginsDescriptions.put("download-commands", "Adds the standard download schemes and commands");
pluginsDescriptions.put("gitiles", "Plugin running Gitiles alongside a Gerrit server");
pluginsDescriptions.put("hooks", "Old-style fork+exec hooks");
pluginsDescriptions.put(
"plugin-manager", "Adds support for discovering and installing other plugins");
pluginsDescriptions.put("replication", "Copies to other servers using the Git protocol");
pluginsDescriptions.put(
"reviewnotes", "Annotates merged commits using notes on refs/notes/review");
pluginsDescriptions.put(
"singleusergroup", "GroupBackend enabling users to be directly added to access rules");
pluginsDescriptions.put(
"webhooks", "Allows to propagate Gerrit events to remote http endpoints");
}