我需要使用代码运行grails默认命令,例如clean
,compile
,prod war
。
我在项目中创建了一个自定义脚本,我需要通过代码运行这些命令。
我的自定义脚本如下所示。
class CustomDeploy extends Script {
def run() {
// my code for running commands.
}
}
请帮帮我。
答案 0 :(得分:0)
您可以创建Grails脚本,该脚本可以访问gradle。
http://docs.grails.org/latest/guide/commandLine.html#creatingCustomScripts