In the root pom.xml:
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 {
...
} |