Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <dependency>
  2. <groupId>org.glassfish.jersey.containers</groupId>
  3. <artifactId>jersey-container-servlet-core</artifactId>
  4. <!-- use the following artifactId if you don't need servlet 2.x compatibility -->
  5. <!-- artifactId>jersey-container-servlet</artifactId -->
  6. </dependency>
  7. <dependency>
  8. <groupId>org.glassfish.jersey.containers.glassfish</groupId>
  9. <artifactId>jersey-gf-cdi</artifactId>
  10. <version>2.14</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>javax.servlet</groupId>
  14. <artifactId>javax.servlet-api</artifactId>
  15. <version>3.1.0</version>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.jboss.weld.servlet</groupId>
  20. <artifactId>weld-servlet</artifactId>
  21. <version>2.2.9.Final</version>
  22. </dependency>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement