50 lines
1.4 KiB
XML
50 lines
1.4 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-sample-lift</artifactId>
|
|
<name>Akka Lift Sample Module</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<parent>
|
|
<artifactId>akka-samples-parent</artifactId>
|
|
<groupId>se.scalablesolutions.akka</groupId>
|
|
<version>0.7-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<lift.version>1.1-M6</lift.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.liftweb</groupId>
|
|
<artifactId>lift-util</artifactId>
|
|
<version>${lift.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.liftweb</groupId>
|
|
<artifactId>lift-webkit</artifactId>
|
|
<version>${lift.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.5</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>jetty</artifactId>
|
|
<version>[6.1.6,)</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|