2

こんにちは、gwt アプリケーションのビルドとパッケージ化を自動化する groovy スクリプトの作成に取り組んでいます。

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 に答える