https://www.liquibase.com/download
Download database driver (.jar file) then put it in /your_liquibase_installation_path/lib
For eg:
With MySQL, download from the Connector/J (mysql-connector-j-x.y.z.jar
) from https://dev.mysql.com/downloads/connector/j/
https://docs.liquibase.com/commands/init/project.html Set up jdbc path, DB user, DB password, configurations, ... using
liquibase init project
It will create some config file, the most important is liquibase.properties
Create your first Liquibase changelog file using https://docs.liquibase.com/commands/inspection/generate-changelog.html
liquibase generateChangeLog
Add --log-level=debug
parameter
liquibase <some args> --log-level=debug