Problem was solved.
We have separate user which has read access to:
DATABASECHANGELOG
DATABASECHANGELOGLOCK
but those tables are not in default schema.
We had configuration for schema but it's property was externalized to property file like this in pom.xml in <plugin> section :
<defaultSchemaName>${db.schema}</defaultSchemaName>
And was not set correctly.
I have moved config directly to profile:
<profile>
<id>ACC</id>
<properties>
<db.schema>MY_SCHEMA</db.schema>
</properties>
</profile>
No it works fine.
Thanks for reply.