我尝试使用plugin从我的SQLfiles生成一个XML文件。我找不到任何如何使用的例子。我将jar的文件添加到类路径并使用Grab下载插件仍然得到methos错误。 changeSet
有什么问题?
@Grapes(
@Grab(group='org.liquibase', module='liquibase-groovy-dsl', version='1.2.2')
)
import groovy.io.FileType
databaseChangeLog {
def dir = new File(".")
dir.eachFileRecurse(FileType.FILES) { file ->
// println file
changeSet(id: 'sql-file') {
sqlFile(path: file.absolutePath, stripComments: 'true', splitStatements: 'true', encoding: 'utf8')
}
}
}