79659019

Date: 2025-06-09 14:26:03
Score: 2.5
Natty:
Report link

I encountered the same issue with version 4.3*, but switching to version 4.29 resolved it. However, the local Maven build with version 4.3. runs without this issue, while I consistently face the same error in the Docker image unless version 4.29 is used.

<dependency>
    <groupId>org.liquibase</groupId>
    <artifactId>liquibase-core</artifactId>
    <version>${liquibase.version}</version>
    <exclusions>
        <exclusion>
            <groupId>org.liquibase</groupId>
            <artifactId>liquibase-commercial</artifactId>
        </exclusion>
        <exclusion>
            <groupId>net.snowflake</groupId>
            <artifactId>snowflake-jdbc</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<liquibase.version>4.29.0</liquibase.version>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): face the same error
  • Low reputation (1):
Posted by: Alexandr Daineko