Thanks Ronak.
Its my mistake. ChangeSet is executing after adding the property runAlways=true.
I am using SpringBoot application, so I will restart and check the application often. So, without runAlways it is expected behaviour . Now it is fine.
I am having another issue now. clearChecksum is not working.
I have added in my pom.xml like below
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>3.8.8</version>
<executions>
<execution>
<goals>
<goal>clearCheckSums</goal>
</goals>
</execution>
</executions>
</plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>3.8.8</version>
<executions>
<execution>
<goals>
<goal>clearCheckSums</goal>
</goals>
</execution>
</executions>
</plugin>
Can you provide your suggestion here.
Thanks
Senthil