我有一个 3 个 xml 文件build.xml, build_1.xml, build_2.xml
。build_1.xml, build_2.xml
文件的目标名为"compress
"。
如何配置build.xml
文件,当我调用" ant compress 1
"时,它会从build_1.xml
文件运行压缩目标,并在"ant compress 2
"的情况下相应地从build_2.xml
运行压缩目标?
请参阅 https://ant.apache.org/manual/Tasks/ant.html
据我了解您的问题,您的构建.xml文件中需要以下 2 个目标:
<target name="ant compress 1">
<ant antfile="build_1.xml" target="compress"/>
</target>
<target name="ant compress 2">
<ant antfile="build_2.xml" target="compress"/>
</target>