Bonjour a tous,
J'ai un projet maven déjà existant auquel j'essaie d'intégrer gwt, j'ai donc modifié mon pom.xml pour l'adapter a GWT.
Lorsque je lance un mvn clean install j'ai l'erreur suivante :
[ERROR] Unable to find type 'com.tyredating.gwt.client.Gwtcallcenter'
[ERROR] Hint: Previous compiler errors may have made this type unavailable
[ERROR] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
j'au pourtant bien défini le fichier .gwt.xml
Voici l'architecture de mon projet :
projet
. . src/main/java
. . . com.tyredating.gwt
. . . . public
. . . . . Application.html
. . . . . Application.css
. . . . com.tyredating.gwt.client
. . . . . Gwtcallcenter.java
. . . . . GwtcallcenterService.java
. . . . . GwtcallcenterServiceAsync.java
. . . . . Gwtcallcenter.gwt.xml
.bin
.src
.target
pom.xml
Voici egalement le contenu de mon fichier .gwt.xml
<module>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
<!-- inherit css based theme -->
<inherits name='com.google.gwt.user.theme.standard.Standard'/>
<!-- Specify the app entry point class. -->
<entry-point class='com.tyredating.gwt.client.Gwtcallcenter'/>
<!-- Specify the application specific style sheet. -->
<stylesheet src='Application.css' />
<source path='client'/>
</module>
Si quelqu'un a une idée ou une remarque je suis preneur, merci d'avance![]()
Partager