Multiple jar files in classpath

whats the correct syntax for specifying multiple jar files in the property file
I am using Liquibase docker image.

I have tried classpath = “lib/a1.jar;lib/b1.jar” inside the property file

same on the “command line” doesnt seem to be helping either.

ok sharing the solution: classpath = lib/a1.jar:lib/b1.jar .

its the colon instead of semi-colon and removal of double quotes.