Apache Derby can be downloaded here: http://db.apache.org/derby/derby_downloads.html
To use Derby with liquibase you will need the following information:
jars for the classpath:
jdbc driver name:
jdbc url:
Creating a database with Derby can be done with a tool called “ij” provided by Derby, as well as other ways.
ij> CONNECT 'jdbc:derby:exampledb;create=true';
A run of liquibase with Derby, having both Derby jars and using the exampledb database folder in the current directory, could look like this:
java -jar liquibase.jar
--classpath=derby.jar:derbyclient.jar
--driver=org.apache.derby.jdbc.EmbeddedDriver
--url="jdbc:derby:exampledb"
--changeLogFile=db-changelog.xml migrate
For further arguments you can pass to Derby, please have a look at Derby’s documentation: http://db.apache.org/derby/manuals/index.html