We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! I tried to add labelFilter value to the liquibase.activities.main but it was converted to '--label-filter' and failed the update.
My build.gradle looks like:
liquibase { activities { main { changelogFile "./root-changelog.yml" url "jdbc:postgresql:localhost:5432/test" .... labelFilter "init" } } }
The result of running the update job: Unexpected argument(s): --label-filter=init
Version of the gradle plugin is 2.2.0, gradle 8.1, openjdk 17
The text was updated successfully, but these errors were encountered:
@vat78 did you ever find a resolution to this? A workaround seems to be to use labels which is an alias for labelFilter in recent versions of Liquibase.
labels
labelFilter
Sorry, something went wrong.
Version 3.0.0 of the plugin completely overhauled the way the plugin configures tasks. Is this still an issue with the latest version?
No branches or pull requests
Hello!
I tried to add labelFilter value to the liquibase.activities.main but it was converted to '--label-filter' and failed the update.
My build.gradle looks like:
The result of running the update job:
Unexpected argument(s): --label-filter=init
Version of the gradle plugin is 2.2.0, gradle 8.1, openjdk 17
The text was updated successfully, but these errors were encountered: