Difference in Liquibase Maven/CLI parameters

2019-08-31 18:03发布

There are a lot of useful parameters (for example, changelogCatalogName) for Maven update task: http://www.liquibase.org/documentation/maven/maven_update.html But they are not mentioned in CLI page for liquibase update: http://www.liquibase.org/documentation/command_line.html Is it possible to pass these parameters? Thanks!

标签: liquibase
1条回答
地球回转人心会变
2楼-- · 2019-08-31 18:23

You can also use liquibase --help to return command line options as well, there may be some on there that were missed in the docs.

I am working on improving consistency and feature parity between different ways to run Liquibase but there can still be some features that have not made it into all modes yet. ChangelogCatalogName and ChangelogSchemaName look like two fields that have not made it into CLI parameters yet, but you are able to specify them by system properties as -Dliquibase.catalogName=ABC and -Dliquibase.schemaName=XYZ

查看更多
登录 后发表回答