Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chathurangat/5867632 to your computer and use it in GitHub Desktop.
Save chathurangat/5867632 to your computer and use it in GitHub Desktop.
<!--spring security dependency starts here-->
<!--provide essential libraries for the spring security-->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>3.1.4.RELEASE</version>
</dependency>
<!--provide spring security filter based web security-->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>3.1.4.RELEASE</version>
</dependency>
<!--spring-security-config dependency required for Spring Security XML namespace declaration.
this dependency will be mainly used by the spring-security.xml file -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>3.1.4.RELEASE</version>
</dependency>
<!--spring security dependency ends here-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment