forked from apache/grails-quartz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
30 lines (30 loc) · 1.16 KB
/
plugin.xml
File metadata and controls
30 lines (30 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<plugin name='quartz' version='1.0-RC4' grailsVersion='1.2 > *'>
<author>Sergey Nebolsin, Graeme Rocher, Ryan Vanderwerf</author>
<authorEmail>rvanderwerf@gmail.com</authorEmail>
<title>Quartz plugin for Grails</title>
<description>This plugin adds Quartz job scheduling features to Grails application.
</description>
<documentation>http://grails.org/plugin/quartz</documentation>
<type>QuartzGrailsPlugin</type>
<resources>
<resource>DefaultQuartzConfig</resource>
<resource>QuartzBootStrap</resource>
<resource>grails.plugins.quartz.JobManagerService</resource>
</resources>
<repositories>
<repository name='grailsCentral' url='http://grails.org/plugins' />
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
</repositories>
<dependencies>
<compile>
<dependency group='org.hibernate' name='hibernate-core' version='3.6.10.Final' />
<dependency group='org.quartz-scheduler' name='quartz' version='2.1.5' />
</compile>
<runtime>
<dependency group='hsqldb' name='hsqldb' version='1.8.0.10' />
</runtime>
</dependencies>
<plugins />
<runtimePluginRequirements />
<behavior />
</plugin>