(Quick Reference)

2 Getting Started - Reference Documentation

Authors: Burt Beckwith

Version: 0.1

2 Getting Started

The first step is to add a dependency for the plugin in BuildConfig.groovy:

plugins {
   …
   runtime ':database-migration-jaxb:0.1'
}

This should pull in the database-migration plugin transitively but you can also explicitly add in a dependency for that, in particular if you want to use a newer version than the plugin requires:

plugins {
   …
   runtime ':database-migration:1.3.2'
}