liquibase does not know anything about your id generation strategy.
As a result try to insert using liquibase only data that is not going to be changed via application.
If it's not suitable for you, then use the following sequence:
1. insert data using liquibase.
2. create a table that is used by your tableGeneratar,
3. set initial values using last id value, inserted in the first step.