我一直在使用Mylyn WikiText 用户指南来学习如何将纺织文件转换为 Eclipse 帮助,但我也希望能够使用 ant 来做到这一点,因为最终我希望有许多纺织文件有助于单个纺织文件转换为 Eclipse 帮助以使多个开发人员能够创建冲突最小的帮助页面。
以下 ant 脚本应获取 'doc' 文件夹中的所有 *.textile 文件并将它们转换为 Eclipse 帮助:
<?xml version="1.0"?>
<project name="helpwikitext" default="generate-help">
<property name="wikitext.standalone" value="doc" />
<path id="wikitext.classpath">
<fileset dir="${wikitext.standalone}">
<include name="org.eclipse.mylyn.wikitext.*core*.jar" />
</fileset>
</path>
<taskdef classpathref="wikitext.classpath" resource="org/eclipse/mylyn/wikitext/core/util/anttask/tasks.properties" />
<target name="generate-help" description="Generate Eclipse help from textile source">
<wikitext-to-eclipse-help markupLanguage="Textile" multipleOutputFiles="true" navigationImages="true" helpPrefix="help">
<fileset dir="${basedir}">
<include name="doc/*.textile" />
</fileset>
<stylesheet url="styles/help.css" />
<stylesheet url="styles/main.css" />
</wikitext-to-eclipse-help>
</target>
</project>
我收到以下错误:
[taskdef] Could not load definitions from resource org/eclipse/mylyn/wikitext/core/util/anttask/tasks.properties. It could not be found.
build.xml:11: Problem: failed to create task or type wikitext-to-eclipse-help
我相当确定我已经安装了所有 Mylyn 功能,所以看起来 ant 脚本不知道在哪里可以找到它们。有谁知道如何解决这一问题?