August 2017
Intermediate to advanced
332 pages
9h 16m
English
In order to use Flyway together with Gradle, we need to add the following content to the build.gradle file:
buildscript { dependencies { classpath('com.h2database:h2:1.4.191') }}…plugins { id "org.flywaydb.flyway" version "4.2.0"}…flyway { url = 'jdbc:h2:file:/tmp/calculator' user = 'sa'}
Here's a quick comment on the configuration:
After this configuration is applied, ...
Read now
Unlock full access