public
Description:
Homepage:
Clone URL: git://github.com/RobertFischer/autobase.git
autobase / plugin.xml
100644 18 lines (17 sloc) 1.057 kb
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 &gt; *'>
  <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' />
  </dependencies>
</plugin>