GWT Error with just 3 classes

Why is GWT complaining that i didnt inherit a module?

I just have 1 package on core…
https://bitbucket.org/andrelopes1705/mygdxwebsite/src/502a6ff60c4e43064285bc77ac2819408f74f474/core/src/?at=default

Why is it complaining?
Can anyone help me?
I uploaded the whole project into bitbucket :

https://bitbucket.org/andrelopes1705/mygdxwebsite/src/502a6ff60c4e43064285bc77ac2819408f74f474?at=default

What is the exact error?

Are you using any Java classes on the client side? Have you inherited their modules or specified their source paths if they’re translatable?

Compiling html…failed

http://pastebin.com/wNUyVejy

I think its missing a inherit.
But idk where

I have this :

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit trunk//EN" "http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/src/gwt-module.dtd">
<module rename-to="html">
	<inherits name='com.badlogic.gdx.backends.gdx_backends_gwt' />
	<inherits name='Box2DLights' />
	<inherits name='com.badlogic.gdx.physics.box2d.box2d-gwt' />
	<inherits name='libgdx-utils' />
	<inherits name='libgdx-utils-box2d' />
	<inherits name='com.kotcrab.vis.vis-ui' />

	<inherits name='MyGdxApp' />
	<entry-point class='br.lopes.app.client.HtmlLauncher' />
	
	<set-configuration-property name="gdx.assetpath" value="../android/assets" />
</module>

~~

A:\Code\MeusProjetosJava\MyGdxWebsite\html\war…\android\assets
A:\Code\MeusProjetosJava\MyGdxWebsite\html\war\assets
Computing all possible rebind results for ‘com.badlogic.gwtref.client.IReflectionCache’
Rebinding com.badlogic.gwtref.client.IReflectionCache
Invoking generator com.badlogic.gwtref.gen.ReflectionCacheGenerator
com.badlogic.gwtref.client.IReflectionCache
com.badlogic.gdx.graphics.g3d.particles.emitters.RegularEmitter
com.badlogic.gdx.graphics.g3d.particles.values.RangedNumericValue
float
com.badlogic.gdx.graphics.g3d.particles.values.ParticleValue
boolean
java.lang.Object
int
java.lang.String
java.lang.CharSequence
char
char[]
void
double
long
java.lang.String[]
byte[]
int[]
java.lang.StringBuffer
java.lang.StringBuilder
com.badlogic.gdx.graphics.g3d.particles.values.ScaledNumericValue
float[]
com.badlogic.gdx.graphics.g3d.particles.emitters.RegularEmitter.EmissionMode

I don’t know how exactly libGDX handles GWT, but if this was a standalone GWT project I would expect this line in your module xml:

<inherits name='com.google.gwt.user.User'/>

I Changed the GWT to this:

GWTDefinition…

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit trunk//EN" "http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/src/gwt-module.dtd">
<module rename-to="html">
	<inherits name='com.badlogic.gdx.backends.gdx_backends_gwt' />
	<inherits name='Box2DLights' />
	<inherits name='com.badlogic.gdx.physics.box2d.box2d-gwt' />
	<inherits name='libgdx-utils' />
	<inherits name='libgdx-utils-box2d' />
	<inherits name='com.kotcrab.vis.vis-ui' />
	
	<inherits name='MainMenu' />
	<inherits name='MyGdxApp' />
	<entry-point class='br.lopes.app.client.HtmlLauncher' />
	
<set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>
<set-configuration-property name="gdx.assetpath" value="../android/assets" />
</module>

GwtSuperdev…:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit trunk//EN" "http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/src/gwt-module.dtd">
<module rename-to="html">
	<inherits name='com.badlogic.gdx.backends.gdx_backends_gwt' />
	<inherits name='Box2DLights' />
	<inherits name='com.badlogic.gdx.physics.box2d.box2d-gwt' />
	<inherits name='libgdx-utils' />
	<inherits name='libgdx-utils-box2d' />
	<inherits name='com.kotcrab.vis.vis-ui' />
	
	<inherits name='MainMenu' />
	<inherits name='MyGdxApp' />
    <inherits name='br.lopes.app.GdxDefinition' />
    
    <collapse-all-properties />
    
	<add-linker name="xsiframe"/>	
	<set-configuration-property name="devModeRedirectEnabled" value="true"/>
	<set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>	
</module>

And now it runs but…
Error Continues :

http://pastebin.com/nsNs65yJ

I will try now with your inherit line

Nothing changes.
Same error :

http://pastebin.com/BxiNDVGs