javaee-websocket-gwt-rpc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.colinalworth.gwt.websockets</groupId>
<artifactId>javaee-websocket-gwt-rpc</artifactId>
<version>0.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>gwt-websockets-parent</artifactId>
<groupId>com.colinalworth.gwt.websockets</groupId>
<version>0.1.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>javaee-websocket-gwt-rpc</artifactId>
<dependencies>
<dependency>
<groupId>com.colinalworth.gwt.websockets</groupId>
<artifactId>rpc-client-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${gwt.groupId}</groupId>
<artifactId>gwt-servlet</artifactId>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/client/**/*.java</include>
<include>**/shared/**/*.java</include>
<include>**/*.gwt.xml</include>
</includes>
</resource>
</resources>
</build>
</project>