Im trying to automate the database-processes. As far as I understood it, by using Liquibase I can invoke the changes made in changesetLog-file automatically with the <goal>
tag.
But when I extend my pom.xml:
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>2.0.5</version>
<configuration>
..
</configuration>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>update</goal>
</goals>
</execution>
</executions>
</plugin>
Eclipse shows me this error:
Plugin execution not covered by lifecycle configuration: org.liquibase:liquibase-maven-plugin:2.0.5: (execution: default, phase: process-resources)
Any idea how to solve this?? And what the problem is?