-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
48 lines (48 loc) · 2.49 KB
/
plugin.xml
File metadata and controls
48 lines (48 loc) · 2.49 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<plugin name='tropic-thunder' version='0.1' grailsVersion='2.1.0 > *'>
<author>Your name</author>
<title>Tropic Thunder Plugin</title>
<description>Brief summary/description of the plugin.
</description>
<documentation>http://grails.org/plugin/tropic-thunder</documentation>
<type>TropicThunderGrailsPlugin</type>
<resources>
<resource>edu.qut.acoustics.tropicthunder.controller.ProjectController</resource>
<resource>edu.qut.acoustics.tropicthunder.controller.RecordingController</resource>
<resource>edu.qut.acoustics.tropicthunder.domain.ConfigPortal</resource>
<resource>edu.qut.acoustics.tropicthunder.domain.HarvestStatus</resource>
<resource>edu.qut.acoustics.tropicthunder.domain.Project</resource>
<resource>edu.qut.acoustics.tropicthunder.domain.ProjectStats</resource>
<resource>edu.qut.acoustics.tropicthunder.domain.Recording</resource>
<resource>edu.qut.acoustics.tropicthunder.domain.Sensor</resource>
<resource>edu.qut.acoustics.tropicthunder.domain.Site</resource>
<resource>edu.qut.acoustics.tropicthunder.portal.service.ConfigService</resource>
<resource>edu.qut.acoustics.tropicthunder.portal.service.DbService</resource>
<resource>edu.qut.acoustics.tropicthunder.portal.service.FileHarvesterService</resource>
<resource>edu.qut.acoustics.tropicthunder.portal.service.RepositoryService</resource>
<resource>edu.qut.acoustics.tropicthunder.portal.service.SysEventService</resource>
</resources>
<repositories>
<repository name='grailsCentral' url='http://grails.org/plugins' />
<repository name='http://repo.grails.org/grails/core' url='http://repo.grails.org/grails/core/' />
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
<repository name='Codehaus' url='http://repository.codehaus.org/' />
</repositories>
<dependencies />
<plugins>
<compile>
<plugin group='org.grails.plugins' name='cache' version='1.0.0' />
</compile>
<runtime>
<plugin group='org.grails.plugins' name='resources' version='1.1.6' />
<plugin group='org.grails.plugins' name='mongodb' version='1.0.0.GA' />
<plugin group='org.grails.plugins' name='executor' version='0.3' />
<plugin group='org.grails.plugins' name='jquery' version='1.7.2' />
<plugin group='org.grails.plugins' name='rest' version='0.7' />
</runtime>
<build>
<plugin group='org.grails.plugins' name='tomcat' version='2.1.0' />
</build>
</plugins>
<runtimePluginRequirements />
<behavior />
</plugin>