I am using maven for smartgwt project and plan to inherit <inherits name="com.smartgwt.RealtimeMessaging" /> however get error that module is not found.
Loading inherited module 'com.smartgwt.RealtimeMessaging'
[INFO] [ERROR] Unable to find 'com/smartgwt/RealtimeMessaging.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
What is the GAV coordinates for com.smartgwt.RealtimeMessaging. I have the following pom dependencies
<dependency>
<groupId>com.isomorphic.smartgwt.power</groupId>
<artifactId>smartgwt-power</artifactId>
<version>12.1-p20210626</version>
</dependency>
<dependency>
<groupId>com.isomorphic.smartgwt.power</groupId>
<artifactId>isomorphic-sql</artifactId>
<version>12.1-p20210626</version>
</dependency>
<dependency>
<groupId>com.isomorphic.smartgwt.power</groupId>
<artifactId>isomorphic-messaging</artifactId>
<version>12.1-p20210626</version>
</dependency>
<dependency>
<groupId>com.isomorphic.smartgwt.power</groupId>
<artifactId>isomorphic-tools</artifactId>
<version>12.1-p20210626</version>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
</exclusion>
</exclusions>
</dependency>
This is my GWT module
<inherits name="com.google.gwt.user.User"/>
<inherits name="com.smartgwt.SmartGwtNoTheme"/>
<inherits name="com.smartgwt.PluginBridgesWidgets" />
<inherits name="com.ricoh.theme.securityanalyst.SecurityAnalyst"/>
<inherits name="com.smartgwtee.SmartGwtEENoTheme"/>
<inherits name="com.smartgwt.RealtimeMessaging" /> ==> IF I REMOVE THIS LINE IT COMPILES FINE, I AM MISSING THE POM DEPENDENCY , CAN YOU PLEASE SHARE ??
<inherits name="com.smartgwt.Drawing" />
<inherits name="com.smartgwt.Charts" />
<inherits name="com.google.gwt.i18n.I18N"/>
<inherits name="com.smartgwtee.tools.Tools"/>
<entry-point class="com..xxx.xxx.xx...somethin..somehting....."/>
<source path="client" />
<source path="shared" />
Loading inherited module 'com.smartgwt.RealtimeMessaging'
[INFO] [ERROR] Unable to find 'com/smartgwt/RealtimeMessaging.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
What is the GAV coordinates for com.smartgwt.RealtimeMessaging. I have the following pom dependencies
<dependency>
<groupId>com.isomorphic.smartgwt.power</groupId>
<artifactId>smartgwt-power</artifactId>
<version>12.1-p20210626</version>
</dependency>
<dependency>
<groupId>com.isomorphic.smartgwt.power</groupId>
<artifactId>isomorphic-sql</artifactId>
<version>12.1-p20210626</version>
</dependency>
<dependency>
<groupId>com.isomorphic.smartgwt.power</groupId>
<artifactId>isomorphic-messaging</artifactId>
<version>12.1-p20210626</version>
</dependency>
<dependency>
<groupId>com.isomorphic.smartgwt.power</groupId>
<artifactId>isomorphic-tools</artifactId>
<version>12.1-p20210626</version>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
</exclusion>
</exclusions>
</dependency>
This is my GWT module
<inherits name="com.google.gwt.user.User"/>
<inherits name="com.smartgwt.SmartGwtNoTheme"/>
<inherits name="com.smartgwt.PluginBridgesWidgets" />
<inherits name="com.ricoh.theme.securityanalyst.SecurityAnalyst"/>
<inherits name="com.smartgwtee.SmartGwtEENoTheme"/>
<inherits name="com.smartgwt.RealtimeMessaging" /> ==> IF I REMOVE THIS LINE IT COMPILES FINE, I AM MISSING THE POM DEPENDENCY , CAN YOU PLEASE SHARE ??
<inherits name="com.smartgwt.Drawing" />
<inherits name="com.smartgwt.Charts" />
<inherits name="com.google.gwt.i18n.I18N"/>
<inherits name="com.smartgwtee.tools.Tools"/>
<entry-point class="com..xxx.xxx.xx...somethin..somehting....."/>
<source path="client" />
<source path="shared" />
Comment