Thanks! i looked into that angle. i'm not seeing the equivalent include in the sample.
Morally, all i've done is a sed mapping com.google.gwt.sample.showcase to com.biosimilarity.iacontainer on all the relevant files:
<module rename-to="showcase">
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name="com.google.gwt.core.Core"/>
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.google.gwt.i18n.I18N"/>
<inherits name="com.google.gwt.i18n.CldrLocales"/>
<inherits name="com.google.gwt.user.theme.standard.StandardResources"/>
<inherits name="com.google.gwt.user.theme.chrome.ChromeResources"/>
<inherits name="com.google.gwt.user.theme.dark.DarkResources"/>
<inherits name="ScalaLibrary"/>
<!-- Enable debug ID. -->
<inherits name="com.google.gwt.user.Debug"/>
<set-property name="gwt.enableDebugId" value="true"/>
<!-- Use a generator to create the source code -->
<generate-with class="com.google.gwt.sample.showcase.generator.ShowcaseGenerator">
<when-type-assignable class="com.google.gwt.sample.showcase.client.Showcase.GeneratorInfo" />
</generate-with>
<!-- Use google-code-prettify to pretty-print source code -->
<script src="prettify.js" />
<script src="lang-scala.js" />
<stylesheet src="prettify.css" />
<!-- Specify the app entry point class. -->
<entry-point class='com.google.gwt.sample.showcase.client.Showcase'/>
<!-- Internationalization support. -->
<extend-property name="locale" values="en"/>
<set-property-fallback name="locale" value="en"/>
</module>
And here's my version
<module rename-to="iacontainer">
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name="com.google.gwt.core.Core"/>
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.google.gwt.i18n.I18N"/>
<inherits name="com.google.gwt.i18n.CldrLocales"/>
<inherits name="com.google.gwt.user.theme.standard.StandardResources"/>
<inherits name="com.google.gwt.user.theme.chrome.ChromeResources"/>
<inherits name="com.google.gwt.user.theme.dark.DarkResources"/>
<inherits name="ScalaLibrary"/>
<!-- Enable debug ID. -->
<inherits name="com.google.gwt.user.Debug"/>
<set-property name="gwt.enableDebugId" value="true"/>
<!-- Use a generator to create the source code -->
<generate-with class="com.biosimilarity.iacontainer.generator.ShowcaseGenerator">
<when-type-assignable class="com.biosimilarity.iacontainer.client.Showcase.GeneratorInfo" />
</generate-with>
<!-- Use google-code-prettify to pretty-print source code -->
<script src="prettify.js" />
<script src="lang-scala.js" />
<stylesheet src="prettify.css" />
<!-- Specify the app entry point class. -->
<entry-point class='com.biosimilarity.iacontainer.client.Showcase'/>
<!-- Internationalization support. -->
<extend-property name="locale" values="en"/>
<set-property-fallback name="locale" value="en"/>
</module>