-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathJesqueWebGrailsPlugin.groovy
50 lines (38 loc) · 1.35 KB
/
JesqueWebGrailsPlugin.groovy
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import net.greghaines.jesque.meta.dao.impl.QueueInfoDAORedisImpl
import net.greghaines.jesque.meta.dao.impl.FailureDAORedisImpl
import net.greghaines.jesque.meta.dao.impl.KeysDAORedisImpl
import net.greghaines.jesque.meta.dao.impl.WorkerInfoDAORedisImpl
class JesqueWebGrailsPlugin {
def version = "0.4.0"
def grailsVersion = "2.0.0 > *"
def dependsOn = [jesque:'0.3.0 > *']
def pluginExcludes = [
"grails-app/views/error.gsp",
"src/groovy/grails/plugin/jesqueweb/test/**",
"test/**",
]
def title = "Jesque Web"
def description = '''\\
Web interface to view and manage jesque queues, jobs and workers.
'''
def author = "Michael Cameron"
def authorEmail = "[email protected]"
def license = "APACHE"
def developers = [
[ name: "Michael Cameron", email: "[email protected]" ],
[ name: "Ted Naleid", email: "[email protected]" ] ]
def documentation = "https://github.com/michaelcameron/grails-jesque-web"
def scm = [ url: "https://github.com/michaelcameron/grails-jesque-web" ]
def doWithWebDescriptor = { xml ->
}
def doWithSpring = {
}
def doWithDynamicMethods = { ctx ->
}
def doWithApplicationContext = { applicationContext ->
}
def onChange = { event ->
}
def onConfigChange = { event ->
}
}