source: other-projects/FileTransfer-WebSocketPair/GXTWebsocketClient/war/WEB-INF/classes/com/example/SocketTest/TestElementalSockets.gwt.xml@ 31449

Last change on this file since 31449 was 31449, checked in by davidb, 7 years ago

Adding three project folders for Nathan Kelly's 2016/2017 summer project, experimenting with Websockets for File Transfer with GWT and Sencha GXT

File size: 1.4 KB
Line 
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.7.0//EN"
7 "http://gwtproject.org/doctype/2.7.0/gwt-module.dtd">
8<module rename-to='testelementalsockets'>
9
10 <!-- Inherit the core Web Toolkit stuff. -->
11 <inherits name='com.google.gwt.user.User'/>
12 <inherits name="com.google.gwt.http.HTTP" />
13
14 <!-- Other module inherits -->
15 <inherits name='com.sencha.gxt.ui.GXT' />
16 <inherits name="com.sksamuel.gwt.GwtWebsockets" />
17 <inherits name="org.nbk4.gwt.action.ServerActionResponse" />
18 <inherits name="com.github.nmorel.gwtjackson.GwtJackson" />
19
20 <!-- GXT Theme -->
21 <!-- Be sure to include Neptunes gxt-theme-neptune.jar in the classpath -->
22
23 <inherits name="com.gs3.theme.greenstone.Theme" />
24
25 <!-- GXT Stylesheet -->
26 <stylesheet src="reset.css" />
27
28 <!-- Specify the app entry point class. -->
29 <entry-point class='com.example.SocketTest.client.TestGXTSockets'/>
30
31 <!-- Specify the paths for translatable code -->
32 <source path='client'/>
33 <source path='shared'/>
34
35 <!-- allow Super Dev Mode -->
36 <add-linker name="xsiframe"/>
37</module>
Note: See TracBrowser for help on using the repository browser.