-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
18 lines (17 loc) · 1.03 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<plugin name='autobase' version='0.8.3' grailsVersion='1.1 > *'>
<author>Robert Fischer</author>
<authorEmail>[email protected]</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' />
</dependencies>
</plugin>