我使用 enunciate (1.27) 生成其余文档作为 ant 构建 (1.9.2) 的一部分,如下所示:
<enunciate basedir="${java.src.dir}" verbose="true" configfile="${basedir}/enunciate.xml" >
<include name="**/*.java"/>
<classpath refid="test.class.path"/>
<export artifactId="docs" destination="${war.temp.enunciate.dir}"/>
</enunciate>
在我迁移到 java 7 之前,这一切都很好。从那时起,我得到:
...
[enunciate] warning: [options] bootstrap class path not set in conjunction with -source 1.5
...
[enunciate] (use -source 7 or higher to enable try-with-resources)
...
我尝试使用 javacArgument 指定 java 7(使用 -source 7 和 -source 1.7):
<enunciate basedir="${java.src.dir}" verbose="true" configfile="${basedir}/enunciate.xml" >
<include name="**/*.java"/>
<classpath refid="test.class.path"/>
<export artifactId="docs" destination="${war.temp.enunciate.dir}"/>
<javacArgument argument="-source 7"/>
</enunciate>
但我收到以下错误:
invoking enunciate:compile step...
[enunciate] javac: invalid flag: -source 7
[enunciate] Usage: javac <options> <source files>
[enunciate] use -help for a list of possible options
这是我的配置文件(enunciate.xml):
<?xml version="1.0"?>
<enunciate label="DocumentCrucible"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://enunciate.codehaus.org/schemas/enunciate-1.27.xsd">
<deployment host="example.com" context="service"/>
<namespaces>
<namespace id="service" uri="http://example.com/service"/>
<namespace id="bean" uri="http://example.com/bean"/>
</namespaces>
<services>
<rest defaultRestSubcontext="/rest"/>
</services>
<modules>
<docs splashPackage="com.example.rest" title="REST API" copyright="www.example.com"
css="enunciate.css">
</docs>
<java-client>
<package-conversions>
<convert from="com.example" to="com.example.client"/>
</package-conversions>
</java-client>
<jersey disableWildcardServletError="true" disabled="true" ></jersey>
</modules>
</enunciate>
看起来发音任务正在为 javac 指定 1.5 版,但我找不到在哪里或如何覆盖它。有人知道我在做什么错吗?
我使用 enunciate 来生成文档,而不是提供其余服务。