com.github.skhatri.DropExtension.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
/**
* Configuration of the directory and file pattern to be applied when running the drop all
* or create new scripts
*/
class DropExtension {
/**
* directory where drop scripts are located
*/
def String dir = '.'
/**
* ANT like file pattern selecting files to be run
*/
def String filePattern = '**/*.sql'
}