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

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

The 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 - 2024 Weber Informatics LLC | Privacy Policy