是否可以将编译器设置添加到.gradlew clean test
?我不想修改gradle.build,因为我想拥有更简洁的控制台输出并且看不到所有编译警告/弃用信息。
我在这里找到了可以添加的Gradle - compileJava - remove compile Warnings:
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
在build.gradle中,但是这是直接在命令行中传递它的选项吗?
答案 0 :(得分:0)
简短的回答:不,你不能那样做。
您只能通过project properties or Java system properties
您必须更改build.gradle
,才能使用项目属性内置系统手动或动态添加。