I'm using the last liquibase version:
- <dependency>
- <groupId>org.liquibase</groupId>
- <artifactId>liquibase-core</artifactId>
- <version>3.2.0</version>
- </dependency>
- username: root
- password: admin
- verbose: true
- dropFirst: true
I can see the following in the output:
- [INFO] context(s): null
- [INFO] number of changes to apply: 0
- [INFO] drop first? false
When I set in in the maven plugin, configuration option:
- <plugin>
- <groupId>org.liquibase</groupId>
- <artifactId>liquibase-maven-plugin</artifactId>
- <version>3.1.1</version>
- <configuration>
- ...
- <dropFirst>true</dropFirst>
It works as expected, In the output:
- [INFO] Settings----------------------------
- ...
- [INFO] drop first? true