forked from pledbrook/autobase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
22 lines (21 loc) · 1.15 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<plugin name='autobase' version='0.9.1' grailsVersion='1.1 > *'>
<author>Robert Fischer</author>
<authorEmail>robert.fischer@smokejumperit.com</authorEmail>
<title>Automate your database work as much as possible</title>
<description>This plugin marries the established Liquibase core with Grails development processes in order to to minimze the amount of database code you have to think about.
The approach to this plugin is to leave the database update mode ("hbm2ddl.auto" value) as "update", and to manage alterations to the database schema through checking in changesets to a folder. The changesets are made up of Liquibase's many "refactorings": http://www.liquibase.org/manual/home#available_database_refactorings
</description>
<documentation>http://github.com/RobertFischer/autobase/wikis</documentation>
<resources>
<resource>BuildConfig</resource>
<resource>DataSource</resource>
<resource>UrlMappings</resource>
</resources>
<dependencies>
<plugin name='hibernate' version='1.1 > *' />
<resolvers>
<resolver type='grailsPlugins' name='grailsPlugins' />
</resolvers>
</dependencies>
<behavior />
</plugin>