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

org.liquibase.maven.plugins.LiquibaseReleaseLocksMojo 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;

/**
 * Removes any Liquibase updater locks from the current database.
 * 
 * @author JAmes Atwill
 * @goal releaseLocks
 */
public class LiquibaseReleaseLocksMojo extends AbstractLiquibaseMojo {

	@Override
	protected void performLiquibaseTask(Liquibase liquibase)
			throws LiquibaseException {
		liquibase.forceReleaseLocks();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy