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.
我想为我的项目创建一个集成的 ant 构建文件。我的项目有 5 个子项目。现在我必须调用这些子项目的“jar”和“war”目标。如何在集成构建文件中调用这些目标?
不确定,如果以下是您想要的,但您可以从单个(在您的情况下为您的主)ant 文件中调用不同的 ant 文件:
<target name="buildAll"> <ant antfile="path/build-file1.xml"/> <ant antfile="path/build-file2.xml"/> <ant antfile="path/build-file3.xml"/> </target>
请参阅:Ant 手册,尤其是本章:Ant 任务以获取更多信息