ZonedDateTime as TIMESTAMP WITH TIME ZONE

Hi, I am using mvn liquibase:diff to generate the changests with the differences between my spring entities and the database. Everything works fine except when I am using the ZonedDateTime type.
mvn liquibase:diff generates a changeset with TIMESTAMP WITHOUT TIME ZONE, but it should be generating a TIMESTAMP WITH TIME ZONE. How can i specify that the mapping must be ZonedDateTime → TIMESTAMP WITH TIME ZONE, and LocalDateTime → TIMESTAMP WITHOUT TIME ZONE.

P.S. I am using PosgreSQL database.
Thank you.