Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是Java新手。在我的 Ant 文件中,我想创建一个目标“init”,它检查声明的属性是否存在(否则它会影响它们的默认值),但我不知道该怎么做。
这比你想象的要容易。只需将它们设置在 init 目标中。在 Ant 中,设置属性是“先设置者获胜”——如果它们已经设置,则 init 目标中的设置将被忽略。
有几种设置属性的方法,但最常用的是:
<property name="foo" value="dist"/>