我有一个基本的 build.xml,其中包含:
<path id="master-classpath-common-lib" >
<fileset dir="${master.classpath}/lib">
<include name="*.jar"/>
</fileset>
</path>
我想在所有 build.xml 中继承此路径 ID,因为编译需要所有这些依赖项。我尝试了以下解决方案,但不明白该怎么做。下面的代码应该继承所有的 id 不是吗?
<ant antfile="${st.lib}/build.xml" inheritrefs="true"/>
当我把
id = master-classpath-common-lib
在
classpathref
的javac
任务它不起作用。
为什么它不工作?