Download#
Prerequisites#
First install Liquibase.
Installation#
- Locate the Liquibase installation folder (subsequently called
LIQUIBASE_HOME
) - Download the extension JAR (from GitHub or Maven Central)
- Place the JAR in the
lib
folder ofLIQUIBASE_HOME
- Run
liquibase --version
, the extension should be listed
Make sure to add the liquibase-asciidoc
dependency as follows, alongside your other dependencies.
<dependency>
<groupId>net.biville</groupId>
<artifactId>liquibase-asciidoc</artifactId>
<version>0.1.0</version>
</dependency>
Info
The extension requires the org:liquibase:liquibase-core
dependency to be included.
If you are a Spring Framework or Spring Boot user for instance, liquibase-core
is likely a transitive dependency and
may not appear directly in your project file.
Make sure liquibase-core
is resolved in your dependency tree (run mvn dependency:tree
to display the latter).
Make sure to add the liquibase-asciidoc
dependency to the plugin definition.
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>4.20.0</version>
<dependencies>
<dependency>
<groupId>net.biville</groupId>
<artifactId>liquibase-asciidoc</artifactId>
<version>0.1.0</version>
</dependency>
</dependencies>
</plugin>
Make sure to add the liquibase-asciidoc
dependency as follows, alongside your other dependencies.
runtimeOnly 'net.biville:liquibase-asciidoc:0.1.0'
Info
The extension requires the org:liquibase:liquibase-core
dependency to be included.
If you are a Spring Framework or Spring Boot user for instance, liquibase-core
is likely a transitive dependency and
may not appear directly in your project file.
Make sure liquibase-core
is resolved in your dependency tree (run gradle -q dependencies
to display the latter).
Make sure to add the liquibase-asciidoc
dependency as follows.
liquibaseRuntime 'net.biville:liquibase-asciidoc:0.1.0'