2

嗨,我正在通过创建一个 groovy 脚本来自动构建和打包一个 gwt 应用程序。

AntBuilder 作为 Groovy 的一部分捆绑在一起,我非常喜欢这个概念。它确实有助于生成脚本的可读性。

但是,我在让我的脚本调用 GWT 编译器时遇到了一些问题。代码如下:

ant.sequential{

    path( id:"gwt.path" , location:"src", { fileset (dir:"${GWT_HOME}", includes:"gwt-dev.jar" )   }      )

    ant.java ( fork:true,  maxmemory:"256M", classpathref:"gwt.path", classname:"com.google.gwt.dev.Compiler"
        ,  {    classpath { pathelement location:"src" }
                classpath { pathelement location:"${GWT_HOME}/gwt-user.jar" }
                classpath { pathelement location:"${WEB_INF}/classes" }
                arg (value:"-war")
                arg (value:"bin/www")
                arg (value:"com/xxx/xxx/xx/xxx/xxx/GWT_DuplicateFinder")
                }
        )
}

据我所知,我已经正确转换了等效的 ant 脚本(从另一个 gwt 项目中使用的先前 build.xml 文件粘贴。

<target name="web" depends="compile" description="GWT Web Compilation">
    <mkdir dir="${gwt.web.out.dir}"/>
    <java fork="true" maxmemory="256M" classpathref="gwt.path" classname="com.google.gwt.dev.Compiler">
     <classpath>
          <pathelement location="src"/>
           <!-- Note the reference to the compiled java classes -->
          <pathelement location="war/WEB-INF/classes"/>
        </classpath>

      <arg value="-war"/>
      <arg value="bin/www"/>
      <arg value="com/xxx/xxx/xx/xxx/xxx/GWT_DuplicateFinder"/>
    </java>
  </target>

我得到的错误是:

[java] [ERROR] Unable to find 'com/xxx/xxx/xx/xxx/xxx/GWT_DuplicateFinder.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

谁能告诉我哪里出错了。

4

1 回答 1

0

由于 GWT 编译器看不到该GWT_DuplicateFinder.gwt.xml文件,因此路径肯定有问题。您确实src在路径中有文件夹,这很好。所以可能基础目录或工作目录不正确(或根本没有设置)。

于 2012-01-30T11:02:04.043 回答