78 lines
2.3 KiB
XML
78 lines
2.3 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>akka-rest</artifactId>
|
|
<name>Akka REST Module</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<artifactId>akka</artifactId>
|
|
<groupId>se.scalablesolutions.akka</groupId>
|
|
<version>0.6</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<!-- Core deps -->
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>akka-util</artifactId>
|
|
<groupId>se.scalablesolutions.akka</groupId>
|
|
<version>0.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>akka-actors</artifactId>
|
|
<groupId>se.scalablesolutions.akka</groupId>
|
|
<version>0.6</version>
|
|
</dependency>
|
|
|
|
<!-- For Jersey & Atmosphere -->
|
|
<dependency>
|
|
<groupId>com.sun.grizzly</groupId>
|
|
<artifactId>grizzly-comet-webserver</artifactId>
|
|
<version>1.8.6.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-core</artifactId>
|
|
<version>1.1.3-ea</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-server</artifactId>
|
|
<version>1.1.3-ea</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-json</artifactId>
|
|
<version>1.1.3-ea</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.ws.rs</groupId>
|
|
<artifactId>jsr311-api</artifactId>
|
|
<version>1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey.contribs</groupId>
|
|
<artifactId>jersey-scala</artifactId>
|
|
<version>1.1.3-ea</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.atmosphere</groupId>
|
|
<artifactId>atmosphere-core</artifactId>
|
|
<version>0.4-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.atmosphere</groupId>
|
|
<artifactId>atmosphere-portable-runtime</artifactId>
|
|
<version>0.4-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.atmosphere</groupId>
|
|
<artifactId>atmosphere-compat</artifactId>
|
|
<version>0.4-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|