org.liquibase.maven.plugins.LiquibaseClearChecksumsMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-maven-plugin Show documentation
Show all versions of liquibase-maven-plugin Show documentation
A Maven plugin wraps up some of the functionality of Liquibase
package org.liquibase.maven.plugins;
import liquibase.Liquibase;
import liquibase.exception.LiquibaseException;
/**
* Clears all checksums in the current changelog, so they will be recalculated next update.
*
* @author Nathan Voxland
* @goal clearCheckSums
*/
public class LiquibaseClearChecksumsMojo extends AbstractLiquibaseMojo {
@Override
protected void performLiquibaseTask(Liquibase liquibase) throws LiquibaseException {
liquibase.clearCheckSums();
}
}