Created
October 6, 2012 05:25
-
-
Save gpike/3844009 to your computer and use it in GitHub Desktop.
MvpExample.gwt.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<module rename-to='mvpexample'> | |
<!-- Inherit the core Web Toolkit stuff. --> | |
<inherits name='com.google.gwt.user.User'/> | |
<!-- Inherit the default GWT style sheet. You can change --> | |
<!-- the theme of your GWT application by uncommenting --> | |
<!-- any one of the following lines. --> | |
<inherits name='com.google.gwt.user.theme.clean.Clean'/> | |
<!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> --> | |
<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> --> | |
<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> --> | |
<!-- Other module inherits --> | |
<inherits name='com.google.gwt.inject.Inject' /> | |
<inherits name="com.google.gwt.activity.Activity" /> | |
<inherits name="com.google.gwt.place.Place" /> | |
<inherits name="com.google.gwt.i18n.I18N" /> | |
<inherits name="com.google.gwt.logging.Logging" /> | |
<set-property name="gwt.logging.firebugHandler" value="ENABLED" /> | |
<set-property name="gwt.logging.enabled" value="TRUE"/> | |
<set-property name="gwt.logging.logLevel" value="FINE"/> | |
<set-property name="gwt.logging.consoleHandler" value="ENABLED" /> | |
<set-property name="gwt.logging.developmentModeHandler" value="ENABLED" /> | |
<set-property name="gwt.logging.popupHandler" value="DISABLED" /> | |
<set-property name="gwt.logging.systemHandler" value="ENABLED" /> | |
<set-property name="gwt.logging.simpleRemoteHandler" value="ENABLED" /> | |
<!-- Specify the app entry point class. --> | |
<entry-point class='com.gwtcasts.mvp.client.MvpExample'/> | |
<!-- Specify the paths for translatable code --> | |
<source path='client'/> | |
<source path='shared'/> | |
</module> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment