All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.liquibase.maven.plugins.LiquibaseClearChecksumsMojo Maven / Gradle / Ivy

There is a newer version: 4.32.0
Show newest version
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();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy