Hi,

I have an eclipse project called some-eclipse-project that was
generated with maven GWT plugin.

My module is named MyModule and is under main/src/resources/myModule/
com/test/MYModule.gwt.xml

The project runs fine within eclipse, but when I try to open GWT
designer it throws an error saying "Can't fin GWT Module ... GWT
designer can't find the module com.test.some-eclipse-project

It seems that GWT Designer is looking for a module with the same name
as the eclipse project, when this isn't my case.

My gwt.xml looks like:


<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='MyModule'>
        <!-- Inherit the core Web Toolkit stuff. -->
        <inherits name='com.google.gwt.user.User' />

        <!-- Inherit the default GWT style sheet. You can change -->
        <!-- the theme of your GWT application by uncommenting -->
        <!-- any one of the following lines. -->
        <inherits name='com.google.gwt.user.theme.standard.Standard' />
        <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
        <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
        <!-- Specify the app entry point class. -->
        <entry-point class='com.test.client.MyModule' />

        <!-- Specify the paths for translatable code -->
        <source path='client' />
        <source path='shared' />



</module>

Is there any trick you know to get GWT designer working with this
setup?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to