Guest User

Untitled

a guest
Jan 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. <dependency>
  2. <groupId>org.atmosphere</groupId>
  3. <artifactId>atmosphere-jersey</artifactId>
  4. <version>0.7.2</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>com.sun.jersey</groupId>
  8. <artifactId>jersey-server</artifactId>
  9. <version>${jersey.version}</version>
  10. </dependency>
  11. <dependency>
  12. <groupId>com.sun.jersey</groupId>
  13. <artifactId>jersey-json</artifactId>
  14. <version>${jersey.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.sun.jersey.contribs</groupId>
  18. <artifactId>jersey-spring</artifactId>
  19. <version>${jersey.version}</version>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-core</artifactId>
  24. </exclusion>
  25. <exclusion>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-beans</artifactId>
  28. </exclusion>
  29. <exclusion>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-web</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-context</artifactId>
  36. </exclusion>
  37. <exclusion>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
Add Comment
Please, Sign In to add comment