我在StackOverflow上读到了一些关于如何在从Ant创建asdoc时排除依赖关系的问题,但我似乎没有正确理解。
在这里(http://livedocs.adobe.com/flex/3/html/help.html?content=asdoc_9.html)它说只需将-exclude-dependences参数设置为true或false,但我得到了一个错误。下面是Ant的输出:
Generate ASDoc:
[echo] --- Generate ASDoc ---
[exec] Error: no default arguments are expected
[exec] Use 'asdoc -help' for information about using the command line.
[exec] Adobe ASDoc
[exec] Version 4.6.0 build 23201
[exec] Copyright (c) 2004-2011 Adobe Systems, Inc. All rights reserved.
[exec] Result: 1
这是Ant的任务:
<target name="Generate ASDoc">
<echo>--- Generate ASDoc ---</echo>
<!-- delete all files in the doc dir -->
<delete
includeemptydirs="true"
>
<fileset
dir="${DOCS_TARGET_DIRECTORY}"
includes="**/*"
/>
</delete>
<!-- create docs -->
<exec executable="${ASDOC_DIRECTORY}" >
<arg line="-doc-sources '${SOURCE_DIRECTORY}' "/>
<arg line="-exclude-dependencies true"/>
<arg line="-output '${DOCS_TARGET_DIRECTORY}' "/>
<arg line="-main-title 'Title' "/>
<arg line="-window-title 'Title' "/>
</exec>
<!-- compress docs -->
<antcall target="Compress ASDoc" description="Compress asdocs" />
</target>
我想知道我是不是用错了。有什么想法吗?谢谢
来自Adobe的使用ASDoc工具
注意:不能对文档源选项指定的输入类使用排除依赖项。