I'm using an OpenLayers wrapper for GWT, called GWT-OpenLayers
On user reference page it says that you need to add a reference on both files, gwt.xml and .html
like this on xml:
<inherits name='org.gwtopenmaps.openlayers.OpenLayers'/>
and this on html
<script src="http://openlayers.org/api/2.11/OpenLayers.js"></script>
GWT-OpenLayers has a showcase, and i'm doing exactly what showcase does. But when app starts and I try to check the source code, I don't see on html, the openlayers script. I've tried to add other's scripts but, unfortunately, the script doesn't appear on source code.
Update 01 - html and browser result:
<head>
...
<script src="http://www.openlayers.org/api/OpenLayers.js"></script>
<script type="text/javascript" language="javascript"
src="GeoStatistics/GeoStatistics.nocache.js"></script>
<script type="text/javascript" src="ol/OpenLayers.js"></script>
<script src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js">
</script>
</head>
Browser = Chrome

As you can see, several script's are add on html, but only one appears.
UPDATE 02 - After compile, still not working I've just compiled my project, and the html still with no script tag.
But I've edited the html and load the project, and I've got the script tag. So, it's some solution, if don't have any other way to generate the html with my script tag, I can just put the tag after compilation.
