Search code examples
grails

grails is missing create-job command


I am using Grails 4.0.3. I follow the Quartz instruction but Grails says there is no such create-job command. Would you point me to correct instruction please?

Thanks!

https://grails-plugins.github.io/grails-quartz/guide/scheduling.html


Solution

  • You will need to add a dependency on the plugin in your build.gradle:

    dependencies {
        compile 'org.grails.plugins:quartz:2.0.13'
        // ...
    }