Flyway

Adding to the classpath

Adding to the classpath

Flyway ships with support for a large number of databases and functionality, but due to limitations (such as licensing) it cannot ship containing everything it supports. In these situations, Flyway will load the extra support/functionality if it is present on the classpath.

How to add to the classpath

How you add to the classpath depends on how you are invoking Flyway.

Command Line

When using the CLI, you can add to the classpath by dropping the .jar files for the libraries or drivers you want to include into a separate directory and then including it via the jarDirs configuration parameter.

 flyway
   conf
   drivers  //here
   jre
   lib
   licenses
   sql
   flyway
   flyway.cmd
   README.txt

API

When using the API, the jars you wish to include should be added as dependencies of the overall project, just as you would with any other java dependencies.

Gradle

See extending the gradle classpath.

Maven

Simply add the library as a regular dependency of your maven project. e.g:

<dependencies>
    <dependency>
        <groupId>org.hsqldb</groupId>
        <artifactId>hsqldb</artifactId>
        <version>1.8.0.10</version>
    </dependency>
</dependencies>

What can be added

The most common library to be added to Flyway is those that add JDBC driver support. For example the Informix database is supported by Flyway, but the JDBC driver is not shipped with it. Therefore the com.ibm.informix:jdbc:4.10.10.0 dependency needs to be added to the classpath to allow Flyway to work with it. See each database page for the JDBC driver they use and whether they are shipped with Flyway or not.

Other uses for adding libraries are adding logging support, adding Java migrations, and more.


Didn't find what you were looking for?