You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* What went wrong:
Execution failed for task ':db-migration-tool:updateSql'.
> 1
When I run this wich --stacktrace option I can see that there is IndexOutOfBoundException. I guess the issue is that it thinks that after test context it will get another property while it is part of the contexts property.
Is there a workaround this? I cannot find any information in the documentation of the plugin (only that spaces are not allowed).
Thank in advance!
The text was updated successfully, but these errors were encountered:
the liquibaseExtraArgs property has been replaced with a much simpler way to declare/override argulents on the command line. In your case yuo can now specify -PliquibaseContexts=test,default andit should pass both contexts to Liquibase.
Hi, I have an issue when I try to run liquibase command and specify more than one context.
For example:
gradlew -PliquibaseExtraArgs="contexts=test,default" db-migration-tool:updateSQL
throws me that exception:
When I run this wich --stacktrace option I can see that there is
IndexOutOfBoundException
. I guess the issue is that it thinks that aftertest
context it will get another property while it is part of thecontexts
property.Is there a workaround this? I cannot find any information in the documentation of the plugin (only that spaces are not allowed).
Thank in advance!
The text was updated successfully, but these errors were encountered: