--- a/server/pom.xml Tue Dec 11 00:01:41 2012 +0100
+++ b/server/pom.xml Tue Dec 25 21:29:11 2012 +0100
@@ -8,10 +8,11 @@
<packaging>war</packaging>
<properties>
- <coweb-version>0.8.3.1</coweb-version>
- <jersey-version>1.14</jersey-version>
- <spring-version>3.1.2.RELEASE</spring-version>
- <junit.version>4.10</junit.version>
+ <coweb-version>0.8.4</coweb-version>
+ <jersey-version>1.16</jersey-version>
+ <spring-version>3.1.3.RELEASE</spring-version>
+ <junit-version>4.10</junit-version>
+ <thymeleaf-version>2.0.14</thymeleaf-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
@@ -154,6 +155,14 @@
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-web</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-aop</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -187,6 +196,11 @@
<version>${spring-version}</version>
</dependency>
<dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-webmvc</artifactId>
+ <version>${spring-version}</version>
+ </dependency>
+ <dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons-core</artifactId>
<version>1.4.0.RELEASE</version>
@@ -209,9 +223,35 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>${junit.version}</version>
+ <version>${junit-version}</version>
<scope>test</scope>
- </dependency>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.2</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.thymeleaf</groupId>
+ <artifactId>thymeleaf</artifactId>
+ <version>${thymeleaf-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.thymeleaf</groupId>
+ <artifactId>thymeleaf-spring3</artifactId>
+ <version>${thymeleaf-version}</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>1.9.16</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.jaxrs</groupId>
+ <artifactId>jackson-jaxrs-json-provider</artifactId>
+ <version>2.1.2</version>
+ </dependency>
</dependencies>
<organization>
<name>IRI</name>