需要一个关于在另一个 cn1lib 中包含外部 cn1lib 类 的示例

Need an example on including external cn1lib classes in another cn1lib

尽管不能嵌套 cn1libs Shai Almog 说可以创建第一个项目,它使用第一个 cn1lib 并从第二个引用。有没有具体的例子说明如何做到这一点?

我实际上没有类似的东西 运行 但你可以只编辑 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>