Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Locked History Actions

GWT/eclipse

Eclipseプラグインでのもろもろ

なんどやり直してもGWT SDKが無いと言われる

プロジェクトプロパティにGWT SDKを何度やり直しても以下のエラーになる。

The project 'sample' does not have any GWT SDKs on its build path

参考は以下

私の場合はプロジェクトトップの.projectを直接編集し、GWT SDKの行をトップにおいたら出なくなった。

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
        <classpathentry kind="con" path="com.google.gwt.eclipse.core.GWT_CONTAINER"/> <!-- これをトップに -->
        <classpathentry kind="src" path="src"/>
        <classpathentry kind="src" path="test"/>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
                <attributes>
                        <attribute name="owner.project.facets" value="java"/>
                </attributes>
        </classpathentry>
        <classpathentry exported="true" kind="con" path="org.springsource.ide.eclipse.gradle.classpathcontainer"/>
        <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
        <classpathentry kind="output" path="war/WEB-INF/classes"/>
</classpath>