You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.4 KiB
65 lines
2.4 KiB
<?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/maven-v4_0_0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-itest</artifactId> |
|
<version>3.0.5.RELEASE</version> |
|
</parent> |
|
<artifactId>spring-security-itest-web</artifactId> |
|
<name>Spring Security - Web Integration Tests</name> |
|
<packaging>war</packaging> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.testng</groupId> |
|
<artifactId>testng</artifactId> |
|
<version>5.11</version> |
|
<scope>test</scope> |
|
<classifier>jdk15</classifier> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.sourceforge.jwebunit</groupId> |
|
<artifactId>jwebunit-htmlunit-plugin</artifactId> |
|
<version>2.2</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>servlet-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-taglibs</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>jetty</artifactId> |
|
<version>${jetty.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>jetty-naming</artifactId> |
|
<version>${jetty.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>jetty-plus</artifactId> |
|
<version>${jetty.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>jsp-2.1-jetty</artifactId> |
|
<version>${jetty.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|