Install the Liquibase Pro Azure Extension
The Liquibase Azure extension allows you to connect to Azure blob storage to access files.
Requirements
- Liquibase 4.32.0+
- Liquibase Pro license. See How to Apply Your Liquibase Pro License Key
- Azure storage account
Installation
CLI
- Navigate to the Liquibase Azure extension on Maven Central.
- Download
liquibase-
and move it to theazure
-<version>.jar$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>