我一直在使用Mylyn WikiText User Guide来学习如何将纺织文件转换为Eclipse帮助,但我也希望能够使用ant来实现这一点,因为最终我想要many textile files contribute to a single textile file then convert to Eclipse help来使多个开发人员能够以最小的冲突创建帮助页面。
以下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脚本不知道在哪里找到它们。有谁知道如何解决这个问题?
答案 0 :(得分:1)
您的doc
目录中是否安装了wiki文件独立软件包?
这就是你定义taskdef使用的路径时所期望的:
<property name="wikitext.standalone" value="doc" />
我猜你的wikitext包是在另一个目录中。
然后使用与文本文件的根相同的目录。我建议将wikitext独立包与文本文件分开。