Skip to content

Instantly share code, notes, and snippets.

@igm
Created November 4, 2011 14:32
Show Gist options
  • Save igm/1339452 to your computer and use it in GitHub Desktop.
Save igm/1339452 to your computer and use it in GitHub Desktop.
Servlet 3.0 and Spring 3.1
<dependencies>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.servlet</artifactId>
<version>3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.1.0.RC1</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>spring</id>
<url>http://maven.springframework.org/milestone</url>
</repository>
</repositories>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment