|
@@ -0,0 +1,322 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <groupId>org.springframework.security</groupId>
|
|
|
+ <artifactId>spring-security-config</artifactId>
|
|
|
+ <version>3.2.0.CI-SNAPSHOT</version>
|
|
|
+ <name>spring-security-config</name>
|
|
|
+ <description>spring-security-config</description>
|
|
|
+ <url>http://springsource.org/spring-security</url>
|
|
|
+ <organization>
|
|
|
+ <name>SpringSource</name>
|
|
|
+ <url>http://springsource.org/</url>
|
|
|
+ </organization>
|
|
|
+ <licenses>
|
|
|
+ <license>
|
|
|
+ <name>The Apache Software License, Version 2.0</name>
|
|
|
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
+ <distribution>repo</distribution>
|
|
|
+ </license>
|
|
|
+ </licenses>
|
|
|
+ <developers>
|
|
|
+ <developer>
|
|
|
+ <id>rwinch</id>
|
|
|
+ <name>Rob Winch</name>
|
|
|
+ <email>rwinch@vmware.com</email>
|
|
|
+ </developer>
|
|
|
+ </developers>
|
|
|
+ <scm>
|
|
|
+ <connection>scm:git:git://github.com/SpringSource/spring-security</connection>
|
|
|
+ <developerConnection>scm:git:git://github.com/SpringSource/spring-security</developerConnection>
|
|
|
+ <url>https://github.com/SpringSource/spring-security</url>
|
|
|
+ </scm>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>aopalliance</groupId>
|
|
|
+ <artifactId>aopalliance</artifactId>
|
|
|
+ <version>1.0</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.security</groupId>
|
|
|
+ <artifactId>spring-security-core</artifactId>
|
|
|
+ <version>3.2.0.CI-SNAPSHOT</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-aop</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-beans</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-context</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-core</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ <version>1.1.1</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.aspectj</groupId>
|
|
|
+ <artifactId>aspectjweaver</artifactId>
|
|
|
+ <version>1.6.10</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.security</groupId>
|
|
|
+ <artifactId>spring-security-web</artifactId>
|
|
|
+ <version>3.2.0.CI-SNAPSHOT</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-web</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.tomcat</groupId>
|
|
|
+ <artifactId>tomcat-servlet-api</artifactId>
|
|
|
+ <version>7.0.33</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cglib</groupId>
|
|
|
+ <artifactId>cglib-nodep</artifactId>
|
|
|
+ <version>2.2</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
+ <artifactId>logback-classic</artifactId>
|
|
|
+ <version>0.9.29</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>hsqldb</groupId>
|
|
|
+ <artifactId>hsqldb</artifactId>
|
|
|
+ <version>1.8.0.10</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.annotation</groupId>
|
|
|
+ <artifactId>jsr250-api</artifactId>
|
|
|
+ <version>1.0</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>4.7</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>ldapsdk</groupId>
|
|
|
+ <artifactId>ldapsdk</artifactId>
|
|
|
+ <version>4.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.directory.server</groupId>
|
|
|
+ <artifactId>apacheds-core</artifactId>
|
|
|
+ <version>1.5.5</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.directory.server</groupId>
|
|
|
+ <artifactId>apacheds-core-entry</artifactId>
|
|
|
+ <version>1.5.5</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.directory.server</groupId>
|
|
|
+ <artifactId>apacheds-protocol-ldap</artifactId>
|
|
|
+ <version>1.5.5</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.directory.server</groupId>
|
|
|
+ <artifactId>apacheds-protocol-shared</artifactId>
|
|
|
+ <version>1.5.5</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.directory.server</groupId>
|
|
|
+ <artifactId>apacheds-server-jndi</artifactId>
|
|
|
+ <version>1.5.5</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.directory.shared</groupId>
|
|
|
+ <artifactId>shared-ldap</artifactId>
|
|
|
+ <version>0.9.15</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.codehaus.groovy</groupId>
|
|
|
+ <artifactId>groovy-all</artifactId>
|
|
|
+ <version>2.0.5</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.easytesting</groupId>
|
|
|
+ <artifactId>fest-assert</artifactId>
|
|
|
+ <version>1.4</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.hibernate.javax.persistence</groupId>
|
|
|
+ <artifactId>hibernate-jpa-2.0-api</artifactId>
|
|
|
+ <version>1.0.1.Final</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
+ <artifactId>hibernate-entitymanager</artifactId>
|
|
|
+ <version>4.1.0.Final</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mockito</groupId>
|
|
|
+ <artifactId>mockito-core</artifactId>
|
|
|
+ <version>1.8.5</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.openid4java</groupId>
|
|
|
+ <artifactId>openid4java-nodeps</artifactId>
|
|
|
+ <version>0.9.6</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guice</artifactId>
|
|
|
+ <groupId>com.google.code.guice</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-api-mockito</artifactId>
|
|
|
+ <version>1.4.12</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-api-support</artifactId>
|
|
|
+ <version>1.4.12</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-core</artifactId>
|
|
|
+ <version>1.4.12</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-module-junit4</artifactId>
|
|
|
+ <version>1.4.12</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-module-junit4-common</artifactId>
|
|
|
+ <version>1.4.12</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-reflect</artifactId>
|
|
|
+ <version>1.4.12</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>jcl-over-slf4j</artifactId>
|
|
|
+ <version>1.6.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.spockframework</groupId>
|
|
|
+ <artifactId>spock-core</artifactId>
|
|
|
+ <version>0.7-groovy-2.0</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.ldap</groupId>
|
|
|
+ <artifactId>spring-ldap-core</artifactId>
|
|
|
+ <version>1.3.1.RELEASE</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.security</groupId>
|
|
|
+ <artifactId>spring-security-ldap</artifactId>
|
|
|
+ <version>3.2.0.CI-SNAPSHOT</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.security</groupId>
|
|
|
+ <artifactId>spring-security-openid</artifactId>
|
|
|
+ <version>3.2.0.CI-SNAPSHOT</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-expression</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-jdbc</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-orm</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-test</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-tx</artifactId>
|
|
|
+ <version>3.2.0.RELEASE</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+</project>
|