Skip to content

Instantly share code, notes, and snippets.

@ittaiz
Created April 24, 2013 15:39
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 ittaiz/5453108 to your computer and use it in GitHub Desktop.
Save ittaiz/5453108 to your computer and use it in GitHub Desktop.
depending on spring-data-mongodb while excluding spring-beans
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.0.1.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
</exclusions>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment