Created
August 14, 2019 02:06
-
-
Save goyalmohit/d7e97c290df915ce112bf101cb7787cf to your computer and use it in GitHub Desktop.
Ading liquibase maven plugin to pom file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.. | |
<plugins> | |
.. | |
<!-- User liquibase plugin --> | |
<plugin> | |
<groupId>org.liquibase</groupId> | |
<artifactId>liquibase-maven-plugin</artifactId> | |
<version>3.0.5</version> | |
<configuration> | |
<propertyFile>src/main/resources/liquibase.properties</propertyFile> | |
</configuration> | |
<!-- | |
<executions> | |
<execution> | |
<goals> | |
<goal>update</goal> | |
</goals> | |
</execution> | |
</executions> | |
--> | |
</plugin> | |
.. | |
</plugins> | |
.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment