You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Source changes

POM

In the root pom.xml:

  • change parent/version from 3.0.13 to 3.0.14
  • change properties/syncope.version from 3.013 to 3.0.14

Code

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

import groovy.transform.CompileStatic
...


@CompileStatic
class MySchedTaskJobDelegate implements SchedTaskJobDelegate {
 ...
}

to:

...


class MySchedTaskJobDelegate implements SchedTaskJobDelegate {
 ...
}



  • No labels