使用ant命令REST API doc生成

时间:2012-10-08 21:39:22

标签: ant enunciate

我正在尝试集成Enunicate来生成现有API的REST文档。

我收到警告“警告:未知工件'文档'。工件不会被导出。”执行ant任务时。

我的设置中是否缺少某些内容?

enunicate.xml是:

<?xml version="1.0"?>
<enunciate label="Empath REST api" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://enunciate.codehaus.org/schemas/enunciate-1.23.xsd">
<modules>
    <!-- Docs -->
    <docs splashPackage="com.parc.perceptum.common" title="Empath REST API"
        copyright="PARC">        <download name="License" file="LICENSE.txt" description="The license file governing the use of this API." />
    </docs> 
</modules>
</enunciate>

相关的ant片段是:

<path id="enunciate.classpath"> 
    <fileset refid="project.libs"/> 
    <fileset dir="${java.home}"> 
            <include name="lib/tools.jar"/> 
    </fileset> 
    <pathelement path="${servlet-lib}" />
    <pathelement path="${mysql-lib}" />
</path>

<taskdef name="enunciate" classname="org.codehaus.enunciate.main.EnunciateTask"> 
    <classpath refid="enunciate.classpath"/>
</taskdef>

<target name="new-rest-api-doc">
    <enunciate basedir="src/com/parc/perceptum/">
      <include name="**/*.java"/>
      <classpath refid="enunciate.classpath"/>
      <export artifactId="docs" destination="restapi"/>
    </enunciate>
</target>

由于

VENU

2 个答案:

答案 0 :(得分:0)

看起来你的类路径上可能没有enunciate库。所以Enunciate不会选择任何模块(包括提供'docs'工件的docs模块)。

答案 1 :(得分:0)

artifactId的值应为'war.file'