|
@@ -1,12 +1,5 @@
|
|
|
<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-parent</artifactId>
|
|
|
- <version>2.0.3-SNAPSHOT</version>
|
|
|
- </parent>
|
|
|
--->
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-itest</artifactId>
|
|
|
<name>Spring Security - Integration Tests</name>
|
|
@@ -15,24 +8,9 @@
|
|
|
<modules>
|
|
|
<module>web</module>
|
|
|
<!-- module>webflow</module-->
|
|
|
- <module>misc</module>
|
|
|
+ <module>context</module>
|
|
|
</modules>
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>org.testng</groupId>
|
|
|
- <artifactId>testng</artifactId>
|
|
|
- <version>5.8</version>
|
|
|
- <scope>test</scope>
|
|
|
- <classifier>jdk15</classifier>
|
|
|
- </dependency>
|
|
|
-<!--
|
|
|
- <dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
- <artifactId>junit</artifactId>
|
|
|
- <version>4.4</version>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
--->
|
|
|
+ <dependencies>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring</artifactId>
|
|
@@ -44,6 +22,17 @@
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-test</artifactId>
|
|
|
+ <version>2.5.5</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
@@ -82,6 +71,16 @@
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.aspectj</groupId>
|
|
|
+ <artifactId>aspectjrt</artifactId>
|
|
|
+ <version>1.6.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.aspectj</groupId>
|
|
|
+ <artifactId>aspectjweaver</artifactId>
|
|
|
+ <version>1.6.1</version>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
@@ -112,41 +111,6 @@
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>jwebunit</groupId>
|
|
|
- <artifactId>jwebunit</artifactId>
|
|
|
- <version>1.2</version>
|
|
|
- <scope>test</scope>
|
|
|
- </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</artifactId>
|
|
|
- <version>${jetty.version}</version>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.mortbay.jetty</groupId>
|
|
|
- <artifactId>jsp-api-2.1</artifactId>
|
|
|
- <version>${jetty.version}</version>
|
|
|
- </dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
<artifactId>spring-ldap</artifactId>
|