javaee-websocket-gwt-rpc-sample
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.colinalworth.gwt.websockets</groupId>
<artifactId>javaee-websocket-gwt-rpc-sample</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>
<packaging>war</packaging>
<artifactId>javaee-websocket-gwt-rpc-sample</artifactId>
<dependencies>
<dependency>
<groupId>com.colinalworth.gwt.websockets</groupId>
<artifactId>javaee-websocket-gwt-rpc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${gwt.groupId}</groupId>
<artifactId>gwt-servlet</artifactId>
</dependency>
<!-- Depend on gwt-user for compilation only -->
<dependency>
<groupId>${gwt.groupId}</groupId>
<artifactId>gwt-user</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>${gwt.plugin.groupId}</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.2.3.v20140905</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>