我正在从Linux机器执行ant build。整个在Windows中运行良好。 但是在Linux中,属性文件中的值不会被加载。
我正在使用命令 ant -Dpropertyfile = configurable.properties build 并使用
property file =“build.properties”
它不会返回任何值。
另外,从Windows和Linux执行ant build有什么不同吗? 请提供您的建议。
答案 0 :(得分:1)
加载属性文件的Ant命令行选项为-propertyfile
。之前没有-D
,也没有等号:
ant -propertyfile configurable.properties
答案 1 :(得分:0)
用于加载属性的Ant命令行选项是-propertyfile< .properties>是为了linux。不需要等于或-D。