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
I have the following activity configured:
schemaInit { searchPath "${projectDir}" changelogFile "db-changelog/changelog-master.xml" url "jdbc:postgresql://${System.env.PG_HOST}:${System.env.PG_PORT}/db_flw" username "..." password "${System.env.DB_ADMIN_PASSWORD}" }
I want to run a liquibase rollbackSql and specify the tag for the rollback using Gradle property via commandline. So I execute
rollbackSql
$ gradlew rollbackSql -PliquibaseTag=01.00 -PliquibaseRunList='schemaInit'
and get the following error message:
The Liquibase 'rollback-sql' command requires a value
It seems that the parameter -PliquibaseRunList='schemaInit' is forwarded to liquibase whereas the parameter -PliquibaseTag=01.00 is not.
-PliquibaseRunList='schemaInit'
-PliquibaseTag=01.00
Any help is appreciated.
Thanks in advance Ulrich
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the following activity configured:
I want to run a liquibase
rollbackSql
and specify the tag for the rollback using Gradle property via commandline. So I executeand get the following error message:
It seems that the parameter
-PliquibaseRunList='schemaInit'
is forwarded to liquibase whereas the parameter-PliquibaseTag=01.00
is not.Any help is appreciated.
Thanks in advance
Ulrich
The text was updated successfully, but these errors were encountered: