au.net.causal.maven.plugins.boxdb.db.ScriptReaderExecution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boxdb-maven-plugin Show documentation
Show all versions of boxdb-maven-plugin Show documentation
Maven plugin to start databases using Docker and VMs
package au.net.causal.maven.plugins.boxdb.db;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
/**
* Defines executions of script resources.
*/
public class ScriptReaderExecution extends ScriptExecutionBase
{
private List scripts = new ArrayList<>();
/**
* @return list of URL resources that will be executed.
*/
public List getScripts()
{
return scripts;
}
public void setScripts(List scripts)
{
this.scripts = scripts;
}
}