Guard against groups with no UUID

prevent issue whereby groups with empty UUID would be loaded, giving the
following error:

```
com.google.common.util.concurrent.UncheckedExecutionException:
java.lang.IllegalArgumentException: UUIDs must consist of at least two
characters at
com.github.benmanes.caffeine.guava.CaffeinatedGuavaLoadingCache.get(CaffeinatedGuavaLoadingCache.java:65)

```

Check whether the group has a valid UUID and skip otherwise

Change-Id: I93d69bc07a08baa73ec4345d3af77d3e4f8d87f0
1 file changed
tree: f01390f867314b7f306f5f0ed1a639e85a270220
  1. admin/
  2. README.md
README.md

Gerrit scripting plugins collection

Overview

This repository contains a collection of Gerrit scripting plugins that are intended to provide simple and useful extensions.

How to run the scripting plugins

Gerrit needs to be able to recognise the scripts syntax and being able to load them as plugins.

In order to be able to run Groovy scripts, you need to install first the Groovy scripting provider and then copy the Groovy scripts under your Gerrit /plugins directory.

Similarly for Scala scripts, you need to install the Scala scripting provider and then copy the Scala scripts under your Gerrit /plugins directory.

Administration Scripts