Skip to content

Instantly share code, notes, and snippets.

@pikanji
Created January 19, 2013 09:27
Show Gist options
  • Save pikanji/4571573 to your computer and use it in GitHub Desktop.
Save pikanji/4571573 to your computer and use it in GitHub Desktop.
Sample for adding dependency of spring-security to a Spring MVC project.
<!-- Security -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>3.1.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>3.1.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>3.1.0.RELEASE</version>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment