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

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

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy