https://stackoverflow.com/a/23689696/1757491
我开始使用上述答案中提出的解决方案中的一些信息: 应用程序插件方法
(build.gradle)
apply plugin: 'application'
mainClassName = "com.mycompany.MyMain"
run {
/* Need to split the space-delimited value in the exec.args */
args System.getProperty("exec.args").split()
}
命令行:
gradle run -Dexec.args="arg1 arg2 arg3"
它的预期用途很有效,但似乎有副作用。传递命令行参数以进行运行是有意义的,但我必须为每个任务传递它们,例如:
gradle tasks -Dexec.args="arg1 arg2 arg3"
如果我遗漏了
-Dexec.args="arg1 arg2 arg3"
我得到了
"build failed with an exception"
Where:path\build.gradle line:18 which if where my run{ } is.
答案 0 :(得分:5)
您可以通过两种不同的方式解决它:
<强>第一强>:
exec.args
属性可以直接在主类中读取 - 因此根本不需要在args
闭包中配置run
。
<强>第二强>:
if :
execArgs = System.getProperty('exec.args')
if(execArgs)
args = execArgs.split()
问题Asker编辑: 使用if确实有效,但我不得不稍微改变语法。
if(System.getProperty("exec.args") != null) {
args System.getProperty("exec.args").split()
}