when I run
./mvnw liquibase:diff
The error I get is
[ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:4.2.2:diff (default-cli) on project engine-7: Execution default-cli of goal org.liquibase:liquibase-maven-plugin:4.2.2:diff failed: A required class was missing while executing org.liquibase:liquibase-maven-plugin:4.2.2:diff: org/springframework/orm/jpa/persistenceunit/DefaultPersistenceUnitManager
[ERROR] -----------------------------------------------------
[ERROR] realm = plugin>org.liquibase:liquibase-maven-plugin:4.2.2
[ERROR] strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
What could be the issue in my Jhiptser + Micronaut setup
I am trying to add a new column in my entity
I imported JDL file using jhipster jdl myjdl.jdl
command.
My pom.xml
<dependency>
<groupId>io.github.jhipster</groupId>
<artifactId>jhipster-framework</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</exclusion>
</exclusions>
</dependency>