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

com.opitzconsulting.orcas.maven.OrcasOneTimeScriptsPreStatics Maven / Gradle / Ivy

There is a newer version: 7.7.1
Show newest version
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