This repository has been archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDbxpModuleBaseGrailsPlugin.groovy
37 lines (35 loc) · 1.75 KB
/
DbxpModuleBaseGrailsPlugin.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
class DbxpModuleBaseGrailsPlugin {
// the plugin version
def version = "0.6.1.3"
// the version or versions of Grails the plugin is designed for
def grailsVersion = "1.3.7 > *"
// the other plugins this plugin depends on are declared in BuildConfig.groovy
def dependsOn = [jquery: "1.7.1 > *", jqueryDatatables: "1.7.5 > *", jqueryUi: "1.7.1 > *" ]
// resources that are excluded from plugin packaging
def pluginExcludes = [
"grails-app/views/error.gsp",
"grails-app/views/index.gsp",
"grails-app/controllers/test"
]
def author = "Robert Horlings"
def authorEmail = "[email protected]"
def title = "Base for Phenotype Database modules that communicate with GSCF"
def description = '''\\
dbxpModuleBase is a Grails plugin that provides basic functionality to create a dbXP module that contains molecular
data for studies defined in GSCF, the Generic Study Capture Framework.
dbxpModuleBase is part of the Phenotype Database software ecosystem.
'''
def documentation = "https://github.com/thehyve/dbxpModuleBase/blob/master/README.md"
def license = "APACHE"
def issueManagement = [system: "github", url: "https://github.com/thehyve/dbxpModuleBase/issues"]
def scm = [url: "https://github.com/thehyve/dbxpModuleBase"]
def organization = [name: "Phenotype Foundatiom", url: "http://phenotypefoundation.org/" ]
def developers = [
[ name: "Kees van Bochove", email: "[email protected]" ],
[ name: "Robert Horlings", email: "[email protected]" ],
[ name: "Siemen Sikkema", email: "[email protected]" ],
[ name: "Jeroen Wesbeek", email: "[email protected]" ],
[ name: "Taco Steemers", email: "[email protected]" ],
[ name: "Tjeerd van Dijk", email: "[email protected]" ]
]
}