2

我使用 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 来生成文档,而不是提供其余服务。

4

2 回答 2

3

从 1.28 RC2 开始,有一个选项可以提供 -source 和 -target 配置参数:

<enunciate javacSourceVersion="1.7" javacTargetVersion="1.7"  ...>
  ...
</enunciate>

http://dist.codehaus.org/enunciate/enunciate-1.28-RC2.zip

于 2013-12-05T00:08:40.227 回答
0

查看源代码后,org.codehaus.enunciate.main.Enunciate.java 将源代码版本硬编码为 1.5(至少在 Enunciate 的 1.27 版本中)。我能看到的唯一解决方案是修改 enunciate 的源代码。

于 2013-10-05T20:16:29.610 回答