
Originally Posted by
AndroidData
Unfortunately, the source is 3.1.0.RC1 for which I can't find a Maven repository for (the milestone repository does not list the RC1 release for me).
Which resource are you unable to find in the maven repository? I am able to find quite a few of them. Can you provide your pom.xml so I can test it? Below is an example pom.xml:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
<groupId>test</groupId>
<artifactId>test</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-openid</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${spring.security.version}</version>
</dependency>
</dependencies>
<properties>
<spring.security.version>3.1.0.RC2</spring.security.version>
</properties>
<repositories>
<repository>
<id>org.springframework.maven.milestone</id>
<name>Spring Maven Milestone Repository</name>
<url>http://maven.springframework.org/milestone</url>
</repository>
</repositories>
</project>

Originally Posted by
AndroidData
You can perform the clone and then checkout a branch based upon the 3.0.5.RELEASE tag. For example:
Code:
git clone git://git.springsource.org/spring-security/spring-security.git
git checkout -b mybranch 3.0.5.RELEASE
I typically use m2eclipse to manage the projects prior to 3.1.x. It has been a while since I have used one of the 3.0.5.RELEASE web applications in eclipse, but I believe m2e will get you setup to run most of the applications (I don't think it will any aspects).
HTH,