EclipseでJQueryUIforGWTのガイドに従いましたが、エラーが発生します。
The type com.google.gwt.query.client.GQuery cannot be resolved. It is indirectly referenced from required .class files
しかし、私がすべてを正しく行っているかどうかはよくわかりません。JQueryUIをインポートしたことはありません(jar以外のファイルを正しくインポートする方法がわかりません)が、GoogleCDNネットワークがそれを処理していると思います。私が従ったチュートリアルはここにあります:
http://code.google.com/p/gwtquery-ui/wiki/GettingStarted
右クリックして[Mavenに変換]を選択して、ファイルをMavenに変換してみました。これにより、POM.xmlファイルが作成されました。これをpomファイルに追加しました:
<repositories>
<repository>
<id>gwtquery-ui-repository</id>
<url>http://gwtquery-ui.googlecode.com/svn/mavenrepo</url>
</repository>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwtquery-ui</artifactId>
<version>r146</version>
<scope>provided</scope>
</dependency>
my.gwt.xmlファイルのJQueryUI部分にこれがあります:
<inherits name='gwtquery.plugins.UiGoogleCdn' />
<inherits name='gwtquery.plugins.UiEmbedded' />
ヒントをいただければ幸いです。