org.liquibase.maven.plugins.AbstractLiquibaseChecksMojo 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
The newest version!
package org.liquibase.maven.plugins;
import org.liquibase.maven.property.PropertyElement;
/**
* A base class for providing Liquibase Policy Checks functionality.
*/
public abstract class AbstractLiquibaseChecksMojo extends AbstractLiquibaseMojo{
/**
* Specifies the checksSettingsFile file for Liquibase Policy Checks to use. If not specified, the default
* checks will be used and no file will be created.
*
* @parameter property="liquibase.checksSettingsFile"
*/
@PropertyElement
protected String checksSettingsFile;
@Override
public boolean databaseConnectionRequired() {
return false;
}
}