com.github.skhatri.ExecutionExtension.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-sqlrelease-plugin Show documentation
Show all versions of gradle-sqlrelease-plugin Show documentation
Plugin to release sql scripts to a target database
The newest version!
package com.github.skhatri
/**
* SQL script files execution options
*/
class ExecutionExtension {
/**
* The SQL script separator be to be used. Default is ;
*/
def String delimiter = ';'
/**
* When executing whether the format of the script is to be kept.
*/
def String keepformat = 'yes'
/**
* Autocommit option
*/
def boolean autocommit = true
}