The Spring Security OAuth project has recently migrated under the official org.springframework.security umbrella at SpringSource. The website is now hosted at http://static.springsource.org/spring-security/oauth and the source code now resides at http://git.springsource.org/spring-security.
Ryan and his team are working on a 1.0.0 version under the new artifact id that includes full OAuth 2 and 1 support. 1.0.0.M1 was recently released to Spring's milestone repository as the following artifact:
Code:
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth</artifactId>
<version>1.0.0.M1</version>
</dependency>
<repository>
<id>org.springframework.maven.milestone</id>
<name>Spring Maven Milestone Repository</name>
<url>http://maven.springframework.org/milestone</url>
<snapshots><enabled>false</enabled></snapshots>
</repository>
I know Ryan has made every effort to preserve backwards compatibility with the Codehaus-hosted version. The one exception i know about is the new version of the library does require Spring Security 3 or greater as a base.
I'll let Ryan add more details, but hope this gets you going.
Keith
Last edited by Keith Donald; Nov 9th, 2010 at 07:00 PM.
Keith Donald
Core Spring Development Team