forked from nebolsin/grails-quartz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
20 lines (20 loc) · 903 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<plugin name='quartz' version='1.0-SNAPSHOT' grailsVersion='1.2 > *'>
<author>Sergey Nebolsin</author>
<authorEmail>[email protected]</authorEmail>
<title>This plugin adds Quartz job scheduling features to Grails application.</title>
<description>Quartz plugin allows your Grails application to schedule jobs to be
executed using a specified interval or cron expression. The underlying
system uses the Quartz Enterprise Job Scheduler configured via Spring,
but is made simpler by the coding by convention paradigm.
</description>
<documentation>http://grails.org/Quartz+plugin</documentation>
<resources>
<resource>BuildConfig</resource>
<resource>DataSource</resource>
<resource>DefaultQuartzConfig</resource>
<resource>QuartzBootStrap</resource>
<resource>grails.plugins.quartz.JobManagerService</resource>
</resources>
<dependencies />
<behavior />
</plugin>