I am trying to learn Oauth authentication with Spring Security and just found two versions of spring-security-oauth library.
<dependency>
<groupId>org.codehaus.spring-security-oauth</groupId>
<artifactId>spring-security-oauth</artifactId>
<version>3.17</version>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth</artifactId>
<version>1.0.0.M6</version>
</dependency>
I was wondering if anyone could please tell me the difference and which the preferred one is?
The web site tells what it’s about.