目前在eclipse中我们直接执行ant脚本,右键单击它们RUn为> ant Build。我们还有一个构建属性。但是随着我们项目的复杂性增加,有一种方法可以使用不同的正确文件,如Buildfile_test.properties,buildfile_QA.properties,并在eclipse中运行ant时传递名称而不必修改build.xml吗?
答案 0 :(得分:1)
您可以在' Arguments'中为构建定义具有属性文件名的参数。您的Ant Build的Run > External Tools > External Tools Configuration
部分。类似的东西:
-Dproperties=Buildfile_test.properties
您可以在build.xml中使用它,如下所示:
<property file="${properties}"/>