Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>library</groupId>
  4. <artifactId>library</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <name>library</name>
  7.  
  8. <properties>
  9. <jersey2.version>2.19</jersey2.version>
  10. <jaxrs.version>2.0.1</jaxrs.version>
  11. </properties>
  12. <dependencies>
  13. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  14. <dependency>
  15. <groupId>org.apache.httpcomponents</groupId>
  16. <artifactId>httpclient</artifactId>
  17. <version>4.5.10</version>
  18. </dependency>
  19.  
  20. <!-- JAX-RS -->
  21. <dependency>
  22. <groupId>javax.ws.rs</groupId>
  23. <artifactId>javax.ws.rs-api</artifactId>
  24. <version>${jaxrs.version}</version>
  25. </dependency>
  26.  
  27. <!-- Jersey 2.19 -->
  28. <dependency>
  29. <groupId>org.glassfish.jersey.media</groupId>
  30. <artifactId>jersey-media-json-jackson</artifactId>
  31. <version>2.25</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.glassfish.jersey.containers</groupId>
  35. <artifactId>jersey-container-servlet</artifactId>
  36. <version>${jersey2.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.glassfish.jersey.core</groupId>
  40. <artifactId>jersey-server</artifactId>
  41. <version>${jersey2.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.glassfish.jersey.core</groupId>
  45. <artifactId>jersey-client</artifactId>
  46. <version>${jersey2.version}</version>
  47. </dependency>
  48.  
  49. </dependencies>
  50.  
  51. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement