Source changes

POM

In the root pom.xml:

Code

Remove the @CompileStatic annotation from all Groovy implementations, e.g. change from:

import groovy.transform.CompileStatic
...


@CompileStatic
class MySchedTaskJobDelegate implements SchedTaskJobDelegate {
 ...
}

to:

...


class MySchedTaskJobDelegate implements SchedTaskJobDelegate {
 ...
}