虽然cn1libs不能嵌套但是Shai Almog说可以创建第一个使用第一个cn1lib并从第二个引用的项目。有关于如何做到这一点的具体例子吗?
答案 0 :(得分:0)
我没有像实际运行那样的东西,但你可能只需编辑cn1lib中的jar任务,也可以包含来自其他cn1lib的类:
<target name="jar" depends="compile,Stubs">
<ant inheritall="false" antfile="pathtoothercn1lib/build.xml" target="jar" />
<copydir src="pathtoothercn1lib/build" to="build" />
...
</target>