com.opitzconsulting.orcas.maven.OrcasOneTimeScriptsPreStatics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orcas-maven-plugin Show documentation
Show all versions of orcas-maven-plugin Show documentation
orcas maven plugin for orcas usage with maven
package com.opitzconsulting.orcas.maven;
import java.io.File;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
/**
* Specialized version of ExecuteOneTimeScripts which is added at the beginning of the build cycle.
*/
@Mojo( name = "oneTimeScriptsPreStatics" )
public class OrcasOneTimeScriptsPreStatics extends BaseOrcasOneTimeScripts
{
/**
* The folder conataining the one-time-sql-scripts.
*/
@Parameter( defaultValue = "src/main/scripts/pre-statics" )
private File scriptfolder;
@Override
protected File getScriptfolder()
{
return scriptfolder;
}
/**
* The logname for spooling.
*/
@Parameter( defaultValue = "pre-statics" )
private String logname;
@Override
protected String getLogname()
{
return logname;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy