Install the Liquibase Pro Azure Extension

The Liquibase Azure extension allows you to connect to Azure blob storage to access files.

Requirements

Installation

CLI

  1. Navigate to the Liquibase Azure extension on Maven Central.
  2. Download liquibase-azure-<version>.jar and move it to the $LIQUIBASE_HOME/lib directory

Tip: $LIQUIBASE_HOME is an environment variable that points to the location of the directory where Liquibase is installed on your machine. You can set environment variables using your operating system's shell. The location of $LIQUIBASE_HOME will depend on where Liquibase was installed on your machine.

Maven Users

To use Liquibase with Maven, you must include the driver JAR(s) as a dependency in your pom.xml file. Using this information, Maven automatically downloads the driver JAR from Maven Central when you build your project.

1. Add the Liquibase Azure extension dependency in your pom.xml file to download the JAR:

<dependency>
	<groupId>org.liquibase.ext</groupId>
	<artifactId>liquibase-azure-extension</artifactId>
	<version>1.0.0</version>
</dependency>

Next Steps