Forward.gwt.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. When updating your version of GWT, you should also update this DTD reference,
  4. so that your app can take advantage of the latest GWT module capabilities.
  5. -->
  6. <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.6.1//EN"
  7. "file:////home/sainw/apps/gwt-2.6.1/gwt-module.dtd">
  8. <module rename-to='forward'>
  9. <!-- Inherit the core Web Toolkit stuff. -->
  10. <inherits name='com.google.gwt.user.User'/>
  11. <inherits name="com.google.gwt.http.HTTP" />
  12. <inherits name="com.google.web.bindery.autobean.AutoBean"/>
  13. <inherits name='com.google.gwt.core.Core'/>
  14. <inherits name="com.google.gwt.i18n.I18N"/>
  15. <inherits name="com.google.gwt.i18n.CldrLocales"/>
  16. <!-- Inherit the default GWT style sheet. You can change -->
  17. <!-- the theme of your GWT application by uncommenting -->
  18. <!-- any one of the following lines. -->
  19. <inherits name='com.google.gwt.user.theme.clean.Clean'/>
  20. <!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> -->
  21. <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
  22. <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
  23. <!-- Other module inherits -->
  24. <!-- Specify the app entry point class. -->
  25. <entry-point class='autoleum.com.client.Forward'/>
  26. <!-- Specify the paths for translatable code -->
  27. <source path='client'/>
  28. <source path='shared'/>
  29. <!-- allow Super Dev Mode -->
  30. <add-linker name="xsiframe"/>
  31. </module>