[FlowUI] Database change log is not working -composite project

Hi
I have a composite project where liquibase is working fine for all the sub-projects except one. Liquibase is not generating the script for any changes in the entity definition or changes in the database itself for updating back to the database for that sub-project, though it is working for other sub-projects within the same composite project. Please suggest how I can identify the root cause and fix it.

Hi

Does this sub-project declared as your app dependency or it is transitive dependency that brought by another sub-project? In case of transitive dependencies via implementation Gradle configuration entities from such sub-project are not available in main app and so the Liquibase generation doesn’t work for them. Change dependency configuration to api in this case.

Hi Alexander
This sub-project is part of the composite project. I also see the dependency declaration in the main project in the (composite) includes that sub-project like other sub-projects too. In fact it was working fine in the beginning.

Anyone has any guidance how to resolve this issue, Jmix team?