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

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

There is a newer version: 4.30.0
Show newest version
package org.liquibase.maven.plugins;

import liquibase.Contexts;
import liquibase.LabelExpression;
import liquibase.Liquibase;
import liquibase.database.Database;
import liquibase.exception.LiquibaseException;
import org.apache.maven.plugin.MojoExecutionException;
import org.liquibase.maven.property.PropertyElement;

import java.io.File;
import java.io.IOException;
import java.io.Writer;

/**
 * 

Generates the SQL that is required to update the database to the current * version as specified in the DatabaseChangeLogs.

* * @author Peter Murray * @description Liquibase UpdateSQL Maven plugin * @goal updateSQL */ public class LiquibaseUpdateSQL extends AbstractLiquibaseUpdateMojo { /** * The file to output the Migration SQL script to, if it exists it will be * overwritten. * * @parameter property="liquibase.migrationSqlOutputFile" * default-value= * "${project.build.directory}/liquibase/migrate.sql" */ @PropertyElement protected File migrationSqlOutputFile; /** The writer for writing the migration SQL. */ private Writer outputWriter; @Override protected void doUpdate(Liquibase liquibase) throws LiquibaseException { if (changesToApply > 0) { liquibase.update(changesToApply, new Contexts(contexts), new LabelExpression(getLabelFilter()), outputWriter); } else { liquibase.update(toTag, new Contexts(contexts), new LabelExpression(getLabelFilter()), outputWriter); } } @Override @java.lang.SuppressWarnings("squid:S2095") protected Liquibase createLiquibase(Database db) throws MojoExecutionException { Liquibase liquibase = super.createLiquibase(db); // Setup the output file writer try { if (!migrationSqlOutputFile.exists()) { // Ensure the parent directories exist migrationSqlOutputFile.getParentFile().mkdirs(); // Create the actual file if (!migrationSqlOutputFile.createNewFile()) { throw new MojoExecutionException( "Cannot create the migration SQL file; " + migrationSqlOutputFile.getAbsolutePath()); } } outputWriter = getOutputWriter(migrationSqlOutputFile); } catch (IOException e) { getLog().error(e); throw new MojoExecutionException( "Failed to create SQL output writer", e); } getLog().info( "Output SQL Migration File: " + migrationSqlOutputFile.getAbsolutePath()); return liquibase; } @Override protected void printSettings(String indent) { super.printSettings(indent); getLog().info( indent + "migrationSQLOutputFile: " + migrationSqlOutputFile); } @Override protected void cleanup(Database db) { super.cleanup(db); if (outputWriter != null) { try { outputWriter.close(); } catch (IOException e) { getLog().error(e); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy