We run the Flowable through the Springboot and it has been running fine with 6.0.0 but we are in the process of upgrading our Springboot to 2.1.6 so we also plan to move to 6.4.1 Flowable I am getting the given below error
APPLICATION FAILED TO START
Description:
An attempt was made to call a method that does not exist. The attempt was made from the following location:
com.lmig.forge.liquibase.CustomLiquibaseAutoConfiguration.<init>(CustomLiquibaseAutoConfiguration.java:42)
The following method did not exist:
org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration$LiquibaseConfiguration.<init>(Lorg/springframework/boot/autoconfigure/liquibase/LiquibaseProperties;Lorg/springframework/core/io/ResourceLoader;Lorg/springframework/beans/factory/ObjectProvider;Lorg/springframework/beans/factory/ObjectProvider;)V
Other then the jpa platfrom I have not added any other settings
POM File
org.flowable
flowable-spring-boot-starter
${flowable.version}
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable5-compatibility</artifactId>
<version>${flowable.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter-rest</artifactId>
<version>${flowable.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<exclusions>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</exclusion>
</exclusions>
</dependency>