I am using GWT 2.9.0 + GXT 4.1.0 + Java 11 combination. I am getting below 
error *[ERROR] Hint: Your source appears not to live underneath a 
subpackage called 'client'; no problem, but you'll need to use the 
directive in your module to make it accessible ProjectName*. Below is my 
project structure in package explorer in eclipse. Can anyone help me in 
resolving the issue:

MavenProjectName


src/main/java ----> This is empty

src/main/src-client
    com.cname.proj
        Main.java ---> Entrypoint class
        Main.gwt.xml
    com.cname.proj.client.centerpanelscreens
    com.cname.proj.client.command
    com.cname.proj.service
       
src/main/src-common
    com.cname.proj
          Common.gwt.xml
    com.cname.proj.model
    com.cname.proj.model.to
    com.cname.proj.service
    com.cname.proj.util
    
src/main/webapp
        index.html
src/main/webapp/WEB-INF    
         web.xml    
         
         
         
    Content in Main.gwt.xml 
         
    <module rename-to="js">
     <inherits name='com.google.gwt.user.User'/>
     <inherits name='com.google.gwt.user.theme.clean.Clean'/>
    <inherits name='com.cname.proj.Common' />
    <inherits name='com.sencha.gxt.ui.GXT'/>

    <entry-point class='com.cname.proj.Main' />
    <source path="client" />
    <source path="service"/>
    </module>
    
    Content in Common.gwt.xml 
    
    <module>
      <inherits name='com.sencha.gxt.ui.GXT'/>
    <source path="model"/>
    <source path="service" />
    <source path="util">
    </source>
   </module>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/2620ddcc-80bb-42d7-8d01-7ea289189afan%40googlegroups.com.

Reply via email to