Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Created August 14, 2019 02:06
Show Gist options
  • Save goyalmohit/d7e97c290df915ce112bf101cb7787cf to your computer and use it in GitHub Desktop.
Save goyalmohit/d7e97c290df915ce112bf101cb7787cf to your computer and use it in GitHub Desktop.
Ading liquibase maven plugin to pom file
..
<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