diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 24 |
1 files changed, 21 insertions, 3 deletions
@@ -76,7 +76,7 @@ <slf4j.version>1.7.5</slf4j.version> <log4j.version>2.0-beta9</log4j.version> - <spring.version>3.2.6.RELEASE</spring.version> + <spring.version>4.0.0.RELEASE</spring.version> <javax.jcr.version>2.0</javax.jcr.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -124,7 +124,25 @@ <dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> - <version>1.6.2</version> + <version>1.7</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.tomcat.embed</groupId> + <artifactId>tomcat-embed-core</artifactId> + <version>${tomcat7Version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.tomcat</groupId> + <artifactId>tomcat-juli</artifactId> + <version>${tomcat7Version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.tomcat.embed</groupId> + <artifactId>tomcat-embed-logging-juli</artifactId> + <version>${tomcat7Version}</version> <scope>test</scope> </dependency> <dependency> @@ -141,7 +159,7 @@ <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> - <version>2.8.1</version> + <version>2.11.0</version> </dependency> <dependency> |